Installation
Die CLI wird als Standalone-Binary bereitgestellt – keine Node.js-Installation erforderlich.
Schnellinstallation
Linux / macOS
curl -fsSL https://marketplace.processcube.io/cli/install | bashWindows (PowerShell)
powershell -c "irm https://marketplace.processcube.io/cli/install.ps1 | iex"Unter Windows installiert der Installer standardmäßig nach %USERPROFILE%\.processcube\bin (kein Admin erforderlich) und fügt das Verzeichnis automatisch zum PATH hinzu.
Installation ohne Root-/Admin-Rechte
Wenn kein sudo verfügbar ist, installiert das Skript automatisch nach ~/.local/bin. Das Installationsverzeichnis kann auch explizit über die Umgebungsvariable INSTALL_DIR gesetzt werden:
Linux / macOS
INSTALL_DIR=~/.local/bin curl -fsSL https://marketplace.processcube.io/cli/install | bashFalls ~/.local/bin nicht im PATH ist:
export PATH="$HOME/.local/bin:$PATH"
# Permanent: Zeile zu ~/.bashrc oder ~/.zshrc hinzufügenWindows
$env:INSTALL_DIR="$env:USERPROFILE\.processcube\bin"; irm https://marketplace.processcube.io/cli/install.ps1 | iex| Plattform | Standard-Verzeichnis | Fallback |
|---|---|---|
| Linux / macOS | /usr/local/bin | ~/.local/bin |
| Windows | %USERPROFILE%\.processcube\bin | – |
Verfügbare Binaries
| Plattform | Architektur | Binary | Signiert |
|---|---|---|---|
| Linux | x64 | pc-linux-x64 | - |
| macOS | Intel (x64) | pc-macos-x64 | ✓ |
| macOS | Apple Silicon (arm64) | pc-macos-arm64 | ✓ |
| Windows | x64 | pc-win-x64.exe | ✓ |
| Windows | x64 | pc-win-x64-unsigned.exe | - |
Hinweis: Die unsignierte Windows-Version (
pc-win-x64-unsigned.exe) ist immer verfügbar. Die signierte Version ist nur vorhanden, wenn die Code-Signierung erfolgreich war.
Manuelle Installation
Binaries können auch direkt von den GitHub Releases heruntergeladen werden.
# Beispiel: Linux x64
curl -L -o pc https://github.com/5minds/ProcessCube.CLI/releases/latest/download/pc-linux-x64
chmod +x pc
sudo mv pc /usr/local/bin/Aktualisieren
Zum Aktualisieren einfach den Installationsbefehl erneut ausführen. Das neue Binary überschreibt das alte.
Deinstallation
Linux / macOS
sudo rm /usr/local/bin/pcWindows
Lösche die pc.exe Datei aus dem Installationsverzeichnis.
Version prüfen
pc --versionHilfe anzeigen
pc --help