Installer le client macOS
Le client actuel est destiné aux Mac Apple Silicon sous macOS 14 ou version ultérieure. Utilisez le domaine officiel de téléchargement.
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}"Vérifiez l’installation avec :
bash
omnicompute --helpMise à jour
bash
omnicompute update --check
omnicompute updateAprès la mise à jour, vérifiez le service avec omnicompute worker status.
Désinstallation
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}"