Launcher#
Launcher packages can be installed via the Omniverse Launcher. The archive should NOT be unzipped prior to installation.
Make sure an Omniverse launcher is installed.
- Assuming the package is at
C:/my_company.usd_explorer.zip
, open up a shell and execute: Windows:
start omniverse-launcher://install?path="C:\my_company.usd_explorer.zip"
Linux:
xdg-open omniverse-launcher://install?path="C:/my_company.usd_explorer.zip"
- Assuming the package is at
The Launcher shows an installation progress bar.
Once installation is complete, the application is listed in the Library tab’s Apps section.
Note
Reference: IT Managed Launcher (this applies also to Workstation Launcher
To make it easier for an end user to install, a developer could provide a utility script…
Windows#
install.bat
my_company.usd_explorer.windows.zip
…where install.bat contains:
@echo off
setlocal
call start omniverse-launcher://install?path="%~dp0\my_company.usd_explorer.windows.zip" %*
Linux#
install.sh
my_company.usd_explorer.linux.zip
…and where install.sh contains:
xdg-open omniverse-launcher://install?path="%~dp0/my_company.usd_explorer.linux.zip" %*