Install getbot
One command to install the CLI on your laptop. One command to deploy OpenClaw on your server.
Invite code required
The CLI is free to install and explore. Deployment access is gated by invite code to ensure a secure onboarding path.
Request an invite code →⚡ Quick install
The install script detects your OS and architecture, downloads the latest release from releases.getbot.run, and installs the getbot binary to /usr/local/bin.
$ curl -fsSL https://getbot.run/install.sh | bash$ wget -qO- https://getbot.run/install.sh | bash 🛠️ Then deploy
Run the interactive setup wizard to deploy OpenClaw on your Linux server:
$ getbot setup The wizard walks you through SSH connection, LLM provider selection, and bot configuration. Your server needs SSH access and at least 8GB of free disk space (15GB+ recommended). See the setup wizard docs for a full walkthrough.
📦 Manual download
If you prefer to install manually, download the archive for your platform and extract the binary.
$ # Fetch latest version
VERSION=$(curl -fsSL https://releases.getbot.run/latest)
# Download and install
curl -fsSL -o getbot "https://releases.getbot.run/v${VERSION}/getbot_linux_amd64"
chmod +x getbot
sudo mv getbot /usr/local/bin/
getbot --version$ # Fetch latest version
VERSION=$(curl -fsSL https://releases.getbot.run/latest)
# Download and install
curl -fsSL -o getbot "https://releases.getbot.run/v${VERSION}/getbot_linux_arm64"
chmod +x getbot
sudo mv getbot /usr/local/bin/
getbot --version$ # Fetch latest version
VERSION=$(curl -fsSL https://releases.getbot.run/latest)
# Download and install
curl -fsSL -o getbot "https://releases.getbot.run/v${VERSION}/getbot_darwin_arm64"
chmod +x getbot
sudo mv getbot /usr/local/bin/
getbot --version$ # Fetch latest version
VERSION=$(curl -fsSL https://releases.getbot.run/latest)
# Download and install
curl -fsSL -o getbot "https://releases.getbot.run/v${VERSION}/getbot_darwin_amd64"
chmod +x getbot
sudo mv getbot /usr/local/bin/
getbot --version All releases are available at releases.getbot.run. Binaries are built with goreleaser for linux-amd64, linux-arm64, darwin-amd64, and darwin-arm64.
📋 Requirements
Your machine (runs getbot CLI)
- Linux or macOS
- curl or wget
Target server (runs your AI agent)
- 2 vCPU, 4 GB RAM (8 GB for multiple bots)
- Ubuntu 22.04/24.04 or Debian 12/13
- SSH access (key-based auth)
- 8 GB+ free disk space (15 GB+ recommended)
- Ports 80 and 443 available
See server checks for details on what getbot verifies before deploying.
Other Linux (including Amazon Linux)? See manual install.
Running multiple bots? Each additional bot needs ~2 CPU cores and 3 GB RAM.