Introduction
If you no longer need OpenClaw, you can follow these steps to completely uninstall it. It’s kind of funny—I just made a deployment guide a few days ago!
1. Uninstall OpenClaw
OpenClaw is installed globally via npm, so uninstalling is simple. Open PowerShell and run:
npm uninstall -g openclaw
2. Delete Configuration Files
OpenClaw creates a config directory in your user folder. You can delete it manually.
Windows: Open CMD or PowerShell and run:
rmdir /s /q %USERPROFILE%\.openclaw
Linux / macOS:
rm -rf ~/.openclaw
3. Verify Uninstallation
Run the following command:
openclaw --version
If you see command not found or an error saying the command doesn’t exist, the uninstallation was successful.
Comments
Login with GitHub to comment