Install Clawdbot on Windows

Requirements: Windows 10/11 with WSL2 (Windows Subsystem for Linux)

Recommended Method: WSL2

1. Open PowerShell as Admin and run:

wsl --install

2. Restart your computer.

3. Open Ubuntu (from Start menu) and run:

curl -fsSL https://agentinstaller.com/install.sh | bash

Alternative: Docker Desktop for Windows

1. Install Docker Desktop

Download from docker.com. During install, check "Use WSL 2 based engine".

2. Run in PowerShell

docker run \
  -e ANTHROPIC_API_KEY=your_key \
  -v $HOME/.anthropic:/home/computeruse/.anthropic \
  -p 5900:5900 -p 8501:8501 -p 8080:8080 \
  -it ghcr.io/anthropics/anthropic-quickstarts:computer-use-demo-latest

Note: File paths in PowerShell might need quotes or different formatting. WSL2 is recommended.