Skip to Content
DevOpsCLIInstallation

Installation

Die CLI wird als Standalone-Binary bereitgestellt – keine Node.js-Installation erforderlich.

Schnellinstallation

Linux / macOS

curl -fsSL https://marketplace.processcube.io/cli/install | bash

Windows (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 | bash

Falls ~/.local/bin nicht im PATH ist:

export PATH="$HOME/.local/bin:$PATH" # Permanent: Zeile zu ~/.bashrc oder ~/.zshrc hinzufügen

Windows

$env:INSTALL_DIR="$env:USERPROFILE\.processcube\bin"; irm https://marketplace.processcube.io/cli/install.ps1 | iex
PlattformStandard-VerzeichnisFallback
Linux / macOS/usr/local/bin~/.local/bin
Windows%USERPROFILE%\.processcube\bin

Verfügbare Binaries

PlattformArchitekturBinarySigniert
Linuxx64pc-linux-x64-
macOSIntel (x64)pc-macos-x64
macOSApple Silicon (arm64)pc-macos-arm64
Windowsx64pc-win-x64.exe
Windowsx64pc-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/pc

Windows

Lösche die pc.exe Datei aus dem Installationsverzeichnis.

Version prüfen

pc --version

Hilfe anzeigen

pc --help