praisonai uninstall deletes the managed environment and global shim that the one-line installer created.
This is CLI self-management only. The core
praisonaiagents SDK is not removed by this command.Quick Start
What It Removes
| Removed | Not touched |
|---|---|
The managed environment (uv tool / pipx venv) | Your ~/.praison/ config and state |
The global praisonai shim on your PATH | Any provider API keys you configured |
| Install type | Uninstall command run |
|---|---|
uv-managed | uv tool uninstall praisonai |
pipx-managed | pipx uninstall praisonai |
plain pip | pip uninstall -y praisonai |
Flags
| Flag | Description |
|---|---|
--yes, -y | Skip the confirmation prompt (non-interactive / CI). |
--json | Global flag — emit machine-readable output ({"manager": ..., "removed": ...}). |
- Human output
- JSON output
Best Practices
Use --yes in scripts and CI
Use --yes in scripts and CI
Non-interactive shells have no TTY for the confirmation prompt. Pass
--yes (or --json) to run cleanly in automation.Keep your config if you plan to reinstall
Keep your config if you plan to reinstall
praisonai uninstall leaves ~/.praison/ in place, so a later reinstall keeps your settings and cache. Remove that directory manually only if you want a fully clean slate.Related
praisonai upgrade
Update the managed CLI install in place
Installer Internals
How the one-line installer works
Installation
Install paths for CLI and SDK users
Isolation Backends
uv, pipx, and venv explained

