Install OpenClaw in 1-Click with Hostinger VPS
Setting up OpenClaw manually can take hours. With Hostinger, you launch instantly—no technical experience needed.
Deploy OpenClaw in 3 Easy Steps
Setting up OpenClaw manually can take hours. With Hostinger, you launch instantly—no need to learn anything new.
Install OpenClaw in 1-click
Start your plan, and we'll handle the setup automatically. No technical experience needed.
Choose where you'd like to chat
Connect via Telegram or WhatsApp and start the conversation with your AI assistant in seconds.
OpenClaw is ready to use
No additional setup required—your OpenClaw AI assistant is live and ready to start working.
Manual Installation Options
Prefer to install OpenClaw yourself? Choose your platform below for step-by-step instructions.
System Requirements for OpenClaw
| Requirement | Minimum | Recommended |
|---|---|---|
| Node.js | v18.0+ | v20 LTS |
| RAM | 4 GB | 8 GB+ |
| Disk Space | 2 GB | 5 GB+ |
| OS | Win 10 / macOS 12 / Ubuntu 20.04 | Latest version |
| GPU (for Ollama) | Optional | NVIDIA 8 GB VRAM |
How to Install OpenClaw on Windows
Step 1: Install Node.js
Download and install Node.js 20 LTS from nodejs.org. This includes npm.
# Verify installation node --version npm --version
Step 2: Install OpenClaw via npm
Open PowerShell as Administrator and run:
npm install -g openclaw
Step 3: Initialize Your Agent
Create a new project directory and initialize OpenClaw:
mkdir my-agent && cd my-agent openclaw init
Step 4: Configure Your Model
Set your preferred LLM and API key:
openclaw config set model deepseek-v3 openclaw config set apikey YOUR_API_KEY
Step 5: Run OpenClaw
Start your first autonomous task:
openclaw run "Summarize my recent emails"
How to Install OpenClaw with Docker
Step 1: Pull the Docker Image
docker pull openclaw/openclaw:latest
Step 2: Run the Container
docker run -d \ --name openclaw-agent \ -e MODEL=deepseek-v3 \ -e API_KEY=your_key_here \ -p 3000:3000 \ openclaw/openclaw:latest
Step 3: Using Docker Compose
# docker-compose.yml version: '3.8' services: openclaw: image: openclaw/openclaw:latest environment: - MODEL=deepseek-v3 - API_KEY=your_key_here ports: - '3000:3000' volumes: - ./data:/app/data
How to Install OpenClaw on Ubuntu / Linux
Step 1: Install Node.js via NodeSource
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - sudo apt-get install -y nodejs
Step 2: Install OpenClaw
sudo npm install -g openclaw
Step 3: Initialize and Run
openclaw init my-agent cd my-agent openclaw config set model deepseek-v3 openclaw run "List all running processes"
OpenClaw Installation FAQ
Common questions about installing and setting up OpenClaw.