Skip to Content
CubyInstallation

Installation

Schnellinstallation

macOS / Linux

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

Optionale 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 -- -c

Das 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' -NoBrowser

Die Binary wird standardmäßig nach C:\Users\<user>\AppData\Local\Programs\Cuby\ installiert und automatisch zum PATH hinzugefügt.

Was passiert bei der Installation?

  1. Erkennung — Das Skript erkennt automatisch Betriebssystem und Architektur
  2. Version — Die neueste Version wird vom Marketplace abgefragt
  3. Download — Die Binary wird heruntergeladen
  4. Verifikation — Die Binary wird getestet
  5. Installation — Die Binary wird im Zielverzeichnis installiert
  6. PATH — (Windows) Das Installationsverzeichnis wird zum PATH hinzugefügt

Installationsverzeichnisse

SystemStandard-Pfad
macOS / Linux/usr/local/bin/cuby
WindowsC:\Users\<user>\AppData\Local\Programs\Cuby\

Manuelle Installation

Binaries können direkt von den GitHub Releases  heruntergeladen werden:

PlattformDatei
Linux x64cuby-linux-x64
macOS ARM64 (Apple Silicon)cuby-macos-arm64
macOS x64 (Intel)cuby-macos-x64
Windows x64cuby-win-x64.exe

Nach dem Download:

  1. Datei ausführbar machen (macOS/Linux): chmod +x cuby-*
  2. 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

cuby

Kommandozeilen-Optionen:

OptionBeschreibung
--version, -vVersion anzeigen
--no-browser, -nBrowser 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/cuby

Windows

Remove-Item "$env:LOCALAPPDATA\Programs\Cuby\cuby.exe" # Optional: PATH in Systemeinstellungen bereinigen