Skip to content

macOS-Client installieren

Der aktuelle Client ist für Apple-Silicon-Macs mit macOS 14 oder neuer vorgesehen. Verwenden Sie die offizielle Download-Domain.

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}"

Prüfen Sie die Installation mit:

bash
omnicompute --help

Aktualisierung

bash
omnicompute update --check
omnicompute update

Prüfen Sie nach der Aktualisierung den Dienst mit omnicompute worker status.

Deinstallation

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}"

OmniCompute documentation