Von null zum KI-Assistenten in 5 Minuten
Wählen Sie Ihre Plattform und folgen Sie der Anleitung. Sie werden im Handumdrehen mit Ihrer KI chatten.
Installation auf macOS
Der schnellste Einstieg. Erfordert Node.js 18+.
OpenClaw installieren
npm install -g openclaw Setup-Wizard ausführen
Dieser führt Sie durch die API-Key-Konfiguration und grundlegende Einstellungen.
openclaw init Gateway starten
Das Gateway ist OpenClaws Hintergrunddienst, der alle Verbindungen verwaltet.
openclaw gateway start Hallo sagen!
openclaw chat "Hello! What can you do?" Installation auf Windows
OpenClaw läuft hervorragend auf Windows via WSL2 (empfohlen) oder nativem Node.js.
WSL2 einrichten (Empfohlen)
Falls WSL2 nicht installiert ist, öffnen Sie PowerShell als Administrator und führen Sie aus:
wsl --install Starten Sie Ihren Computer nach der Installation neu.
Node.js in WSL installieren
Öffnen Sie Ihr WSL-Terminal (Ubuntu) und installieren Sie Node.js:
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt install -y nodejs OpenClaw installieren
npm install -g openclaw Initialisieren und starten
openclaw init
openclaw gateway start
openclaw chat "Hello!" Installation auf Linux
Funktioniert auf jeder Distribution mit Node.js 18+. Perfekt für Server!
Node.js installieren (falls erforderlich)
"comment"># Ubuntu/Debian
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt install -y nodejs
"comment"># Arch
sudo pacman -S nodejs npm OpenClaw installieren
npm install -g openclaw Initialisieren und starten
openclaw init
openclaw gateway start Testen
openclaw chat "Hello! What can you do?" Installation mit Docker
Ideal für Isolation und einfaches Deployment. Läuft überall, wo Docker läuft.
Image herunterladen
docker pull openclaw/openclaw:latest Setup-Wizard ausführen
docker run -it \
-v openclaw-config:/home/openclaw/.openclaw \
openclaw/openclaw:latest init Gateway starten
docker run -d \
--name openclaw \
--restart unless-stopped \
-v openclaw-config:/home/openclaw/.openclaw \
openclaw/openclaw:latest gateway start Chatten
docker exec -it openclaw openclaw chat "Hello!" In die Cloud deployen
Ein-Klick-Deployments für immer verfügbare Betrieb.
Ihren API-Key erhalten
OpenClaw benötigt einen API-Key von Ihrem bevorzugten KI-Anbieter.
Fehlerbehebung
Häufige Probleme und deren Lösungen.
Command not found: openclaw
Make sure npm's global bin directory is in your PATH. Try:
npm config get prefix
Add the returned path + /bin to your shell's PATH variable.
Gateway won't start
Check if the port is already in use. The gateway runs on port 3000 by default.
lsof -i :3000 # macOS/Linux
netstat -ano | findstr :3000 # Windows
You can also try restarting: openclaw gateway restart
API key not working
Verify your API key is correctly set:
openclaw config show
Make sure there are no extra spaces. You can reset it with openclaw init.
WhatsApp QR code not appearing
The WhatsApp QR code is shown in the terminal. Make sure you run the command in a terminal that supports QR display. If issues persist, see the official WhatsApp docs.
Noch immer nicht weitergekommen?
🎉 Sie sind startklar!
Jetzt, da OpenClaw läuft, sind das Ihre nächsten Schritte: