Deploying OpenClaw on Atlas, Tutorials/Deploying OpenClaw on Atlas
3 min read
OpenClaw is an open-source AI agent for operations work (think Claude Code / Aider for ops). This guide installs the agent on an Atlas VM so you can run it as a long-lived service rather than from your laptop.
You can install OpenClaw using the official install script or via npm.
Option A: Install Script (Recommended)
This script automatically detects your OS and installs the latest version.
curl -fsSL https://openclaw.ai/install.sh | bash
Option B: via npm
If you prefer to use npm directly:
npm install -g openclaw@latest
4. Initialize the Agent
Run the onboarding wizard to create your config and start the background service:
Interactive Mode (Recommended for first-time users):
openclaw onboard --install-daemon
Follow the prompts to select your AI provider (e.g., OpenAI, Anthropic), enter your API key, and configure basic settings.
Non-Interactive Mode (For scripts/automation):
You can bypass prompts by passing flags. Replace the API key variable with your actual key or environment variable.