Schnellinstallation
Wähle deine Plattform und starte mit einem Befehl
So installierst du OpenClaw auf macOS oder Linux: Führe das offizielle Installationsskript aus. Es erkennt automatisch dein System, installiert Node.js 22+ falls nötig und richtet OpenClaw global ein.
curl -fsSL https://openclaw.ai/install.sh | bash openclaw onboard --install-daemon So installierst du OpenClaw auf Windows: Führe das PowerShell-Installationsskript aus. Es installiert Node.js über winget/Chocolatey/Scoop und richtet OpenClaw global ein.
iwr -useb https://openclaw.ai/install.ps1 | iex openclaw onboard --install-daemon So installierst du OpenClaw mit Docker: Nutze Docker Compose für ein containerisiertes Setup. Ideal für isolierte Umgebungen oder VPS-Deployments.
./docker-setup.sh So installierst du OpenClaw über npm: Wenn du bereits Node.js 22+ hast, installiere OpenClaw global mit npm. Einfach und unkompliziert.
npm install -g openclaw@latest openclaw onboard --install-daemon So installierst du OpenClaw mit Nix: Nutze nix-shell für eine reproduzierbare, deklarative Installation. Perfekt für NixOS-Nutzer.
nix-shell -p openclaw So installierst du OpenClaw aus dem Quellcode: Klone das GitHub-Repo und baue lokal. Für Contributor und Entwickler, die die neuesten Features wollen.
git clone https://github.com/openclaw/openclaw.git cd openclaw && pnpm install && pnpm build openclaw onboard --install-daemon