Skip to content

Install the macOS client

OmniCompute currently provides a macOS client for Apple Silicon Macs. Use the official download domain to obtain the installer.

Stable installation

bash
INSTALLER="$(mktemp /tmp/omnicompute-install.XXXXXX)"
curl -fL --proto '=https' --proto-redir '=https' --tlsv1.2 \
  https://download.omnicompute.net/install.sh -o "${INSTALLER}"
bash "${INSTALLER}"
rm -f "${INSTALLER}"

The installer sets up the client and CLI. Confirm the installation with:

bash
omnicompute --help

Updates

bash
omnicompute update --check
omnicompute update

The client follows the platform release policy when checking for updates. After an update, run omnicompute worker status to confirm that the service is available again.

Uninstall

bash
UNINSTALLER="$(mktemp /tmp/omnicompute-uninstall.XXXXXX)"
curl -fL --proto '=https' --proto-redir '=https' --tlsv1.2 \
  https://download.omnicompute.net/uninstall.sh -o "${UNINSTALLER}"
bash "${UNINSTALLER}"
rm -f "${UNINSTALLER}"

Use the uninstaller's cleanup option only after confirming that the device will no longer use this account.

OmniCompute documentation