Guide
How to Uninstall OpenClaw
Need to remove OpenClaw from your system? This guide covers complete uninstallation on Mac, Windows, Linux, and Docker — including config files, skills, and data.
Before You Uninstall
Before removing OpenClaw, consider whether you actually need to uninstall or just need to fix an issue:
- Gateway not starting? — See the gateway pairing fix
- Rate limit errors? — See the rate limit troubleshooting guide
- Bot not responding? — See the bot troubleshooting guide
- Want to start fresh? — You can reset your config without uninstalling:
rm -rf ~/.openclawthen reconfigure.
Uninstall on macOS
If installed via npm
npm uninstall -g openclawIf installed via Homebrew
brew uninstall openclawRemove config and data
# Remove OpenClaw config directory
rm -rf ~/.openclaw
# Remove any cached skills
rm -rf ~/Library/Caches/openclawUninstall on Windows
If installed via npm
npm uninstall -g openclawIf installed via installer
Open Settings → Apps → Installed apps, search for “OpenClaw”, and click Uninstall.
Remove config and data
# Remove OpenClaw config directory (PowerShell)
Remove-Item -Recurse -Force "$env:USERPROFILE\.openclaw"
# Or in Command Prompt
rmdir /s /q "%USERPROFILE%\.openclaw"Uninstall on Linux
If installed via npm
npm uninstall -g openclawIf installed via package manager
# Debian/Ubuntu
sudo apt remove openclaw
# Arch Linux
sudo pacman -R openclawRemove config and data
rm -rf ~/.openclawUninstall Docker Installation
If you're running OpenClaw in Docker:
# Stop and remove the container
docker stop openclaw && docker rm openclaw
# Remove the Docker image
docker rmi ghcr.io/openclaw/openclaw:latest
# Remove bind-mounted config (adjust path as needed)
rm -rf ~/openclaw-dataVerify Removal
Confirm OpenClaw is fully removed:
# Check if the command is still available
which openclaw
# Should return "openclaw not found"
# Check if config directory is gone
ls ~/.openclaw
# Should return "No such file or directory"
# Check for running Docker containers
docker ps | grep openclaw
# Should return nothingHaving Issues with Self-Hosting?
If you're uninstalling because self-hosting OpenClaw is too complex, consider OpenClaw Launch instead. We handle all the infrastructure — deploy your AI agent in 10 seconds, no Docker or server management needed. Plans from $3/mo.