Install openclaw.ai on Arch Linux
Two methods to install openclaw.ai on Arch: npm (recommended) or AUR.
1
Method 1: npm Installation (Recommended)
Install Dependencies
bash
sudo pacman -Syu nodejs npm git
Install openclaw
bash
curl -fsSL https://openclaw.ai/install.sh | bash
openclaw onboard --install-daemon
Run
bash
openclaw init
# Optional: Set API Key if using Cloud LLM
# export OPENAI_API_KEY="your-key"
openclaw run
2
Method 2: AUR (Alternative)
If you prefer AUR packages:
Using yay
bash
yay -S openclaw
Using paru
bash
paru -S openclaw
Note
AUR packages are community-maintained. The pip method generally provides the latest version.
Was this tutorial helpful?