Installation
Schnellinstallation
macOS / Linux
curl -fsSL https://marketplace.processcube.io/cuby/install | bashOptionale Parameter:
# Benutzerdefiniertes Installationsverzeichnis
curl -fsSL https://marketplace.processcube.io/cuby/install | bash -s -- -d /custom/path
# Ohne Browser-Öffnung nach Installation
curl -fsSL https://marketplace.processcube.io/cuby/install | bash -s -- -n
# Nur Version prüfen (kein Update)
curl -fsSL https://marketplace.processcube.io/cuby/install | bash -s -- -cDas Skript erkennt automatisch die Plattform (macOS ARM64/x64, Linux x64) und installiert die passende Binary nach /usr/local/bin/cuby.
Windows (PowerShell)
powershell -c "irm https://marketplace.processcube.io/cuby/install.ps1 | iex"Optionale Parameter:
& ([scriptblock]::Create((irm https://marketplace.processcube.io/cuby/install.ps1))) -InstallDir 'C:\Tools' -NoBrowserDie Binary wird standardmäßig nach C:\Users\<user>\AppData\Local\Programs\Cuby\ installiert und automatisch zum PATH hinzugefügt.
Was passiert bei der Installation?
- Erkennung — Das Skript erkennt automatisch Betriebssystem und Architektur
- Version — Die neueste Version wird vom Marketplace abgefragt
- Download — Die Binary wird heruntergeladen
- Verifikation — Die Binary wird getestet
- Installation — Die Binary wird im Zielverzeichnis installiert
- PATH — (Windows) Das Installationsverzeichnis wird zum PATH hinzugefügt
Installationsverzeichnisse
| System | Standard-Pfad |
|---|---|
| macOS / Linux | /usr/local/bin/cuby |
| Windows | C:\Users\<user>\AppData\Local\Programs\Cuby\ |
Manuelle Installation
Binaries können direkt von den GitHub Releases heruntergeladen werden:
| Plattform | Datei |
|---|---|
| Linux x64 | cuby-linux-x64 |
| macOS ARM64 (Apple Silicon) | cuby-macos-arm64 |
| macOS x64 (Intel) | cuby-macos-x64 |
| Windows x64 | cuby-win-x64.exe |
Nach dem Download:
- Datei ausführbar machen (macOS/Linux):
chmod +x cuby-* - Datei in einen Ordner im PATH verschieben
Systemvoraussetzungen
- Betriebssystem — Windows 10+, macOS 10.13+ oder Linux (x64)
- Netzwerk — Internetzugang für Marketplace und Downloads
- Port — Port 3847 muss frei sein
Cuby starten
cubyKommandozeilen-Optionen:
| Option | Beschreibung |
|---|---|
--version, -v | Version anzeigen |
--no-browser, -n | Browser nicht automatisch öffnen |
Beim ersten Start öffnet sich automatisch der Setup-Wizard im Browser unter http://localhost:3847.
Deinstallation
macOS / Linux
sudo rm /usr/local/bin/cubyWindows
Remove-Item "$env:LOCALAPPDATA\Programs\Cuby\cuby.exe"
# Optional: PATH in Systemeinstellungen bereinigen