Skip to content

docs: update installer pages for frictionless uv/pipx/venv install#827

Merged
MervinPraison merged 1 commit into
mainfrom
claude/issue-824-20260623-1206
Jun 23, 2026
Merged

docs: update installer pages for frictionless uv/pipx/venv install#827
MervinPraison merged 1 commit into
mainfrom
claude/issue-824-20260623-1206

Conversation

@MervinPraison

Copy link
Copy Markdown
Owner

Summary

  • Major rewrite of docs/install/installer.mdx: documents all three isolation backends (uv tool → pipx → venv fallback), all new CLI flags (--backend, --install-dir, --no-modify-path), all new env vars, shell completions section, ~/.local/bin/praisonai shim, sequence diagram, power-user alternatives, updated uninstall/troubleshooting
  • Updated docs/install/quickstart.mdx: adds uvx and pipx install as first-class tabs, new flags/env var accordions, updated What Gets Installed table
  • Updated docs/installation.mdx: isolation note + link to new backends page
  • Updated docs/index.mdx: isolation copy under macOS/Linux tab + uvx/pipx install tabs
  • Updated docs/developers/scripts.mdx: new description, features list, env vars, and examples for multi-backend installer
  • New page docs/install/isolation-backends.mdx: backend decision diagram, side-by-side comparison table (uv / pipx / venv / --no-venv), per-backend install examples, PATH block docs
  • Updated docs.json: added Install group (quickstart, installer, isolation-backends)

Fixes #824

Generated with Claude Code

…ixes #824)

- Major rewrite of docs/install/installer.mdx: three-backend flow
  (uv tool → pipx → venv fallback), all new CLI flags (--backend,
  --install-dir, --no-modify-path), all new env vars, shell completions
  section, updated uninstall/troubleshooting, power-user alternatives
- Update docs/install/quickstart.mdx: adds uvx and pipx tabs as
  first-class install options, new env vars table, updated What Gets
  Installed table including ~/.local/bin shim
- Update docs/installation.mdx: isolation note + link to backends page
- Update docs/index.mdx: isolation copy under macOS/Linux tab + uvx/pipx tabs
- Update docs/developers/scripts.mdx: new description, features list,
  env vars, and examples reflecting multi-backend installer
- New docs/install/isolation-backends.mdx: decision diagram, side-by-side
  comparison table, per-backend install examples, PATH management section
- Update docs.json: add Install group with quickstart, installer, and
  isolation-backends pages

Co-authored-by: Mervin Praison <MervinPraison@users.noreply.github.com>
@qodo-code-review

Copy link
Copy Markdown

Qodo reviews are paused for this user.

Troubleshooting steps vary by plan Learn more →

On a Teams plan?
Reviews resume once this user has a paid seat and their Git account is linked in Qodo.
Link Git account →

Using GitHub Enterprise Server, GitLab Self-Managed, or Bitbucket Data Center?
These require an Enterprise plan - Contact us
Contact us →

@coderabbitai

coderabbitai Bot commented Jun 23, 2026

Copy link
Copy Markdown

Warning

Review limit reached

@MervinPraison, we couldn't start this review because you've reached your PR review rate limit.

More reviews will be available in 51 minutes and 23 seconds. Learn how PR review limits work.

Your organization has used up its prepaid credits, and credit purchases are no longer available. Enable the review add-on in the billing tab to keep reviews running — you're only billed for reviews past your plan's rate limits ($0.25/file).

⌛ How to resolve this issue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based credits.

🚦 How do rate limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan refill rate.

For paid Pro and Pro+ PR reviews, CodeRabbit uses rolling per-developer review limits. Reviews become available again as older review attempts age out of the rolling limit window.

Please see our Fair Usage Limits Policy for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: c1fa1e34-62d8-4c43-9593-1154de31b1f6

📥 Commits

Reviewing files that changed from the base of the PR and between e201d44 and 6d70c14.

📒 Files selected for processing (7)
  • docs.json
  • docs/developers/scripts.mdx
  • docs/index.mdx
  • docs/install/installer.mdx
  • docs/install/isolation-backends.mdx
  • docs/install/quickstart.mdx
  • docs/installation.mdx
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch claude/issue-824-20260623-1206

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the PraisonAI documentation to detail the new isolated installation process using three backends (uv tool, pipx, and a venv fallback), including PATH management, shell completions, and uninstallation steps. The reviewer feedback points out a Mermaid diagram syntax issue with escaped brackets in installer.mdx, an incorrect relative symlink path in isolation-backends.mdx, and missing environment variables (PRAISONAI_PYTHON and PRAISONAI_NO_PROMPT) in the tables of scripts.mdx and quickstart.mdx that should be added for consistency.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

Comment on lines +13 to +16
B -->|uv found| C[uv tool install praisonai\[all\]]:::tool
B -->|pipx found| D[pipx install praisonai\[all\]]:::tool
B -->|neither| E[Create venv at ~/.praisonai/venv]:::tool
E --> F[pip install praisonai\[all\]]:::tool

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

In Mermaid diagrams, square brackets [ and ] are special characters used to define node shapes. Escaping them with backslashes (e.g., \\[ and \\]) can cause rendering issues or display literal backslashes depending on the Markdown/Mermaid parser. Wrapping the node text in double quotes is the standard and robust way to include square brackets.

    B -->|uv found| C["uv tool install praisonai[all]"]:::tool
    B -->|pipx found| D["pipx install praisonai[all]"]:::tool
    B -->|neither| E["Create venv at ~/.praisonai/venv"]:::tool
    E --> F["pip install praisonai[all]"]:::tool


### venv (fallback)

The installer creates `~/.praisonai/venv` and symlinks `~/.local/bin/praisonai → venv/bin/praisonai`.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The symlink target venv/bin/praisonai is relative and would resolve to ~/.local/bin/venv/bin/praisonai (which is incorrect and broken). It should point to the absolute path ~/.praisonai/venv/bin/praisonai to match the description in docs/install/installer.mdx.

Comment on lines 52 to 61
| Variable | Default | Description |
|----------|---------|-------------|
| `PRAISONAI_VERSION` | `latest` | Specific version to install |
| `PRAISONAI_EXTRAS` | `""` | Comma-separated extras (ui,chat,api) |
| `PRAISONAI_SKIP_VENV` | `0` | Skip virtual environment |
| `PRAISONAI_EXTRAS` | `""` | Comma-separated extras (defaults to `all`) |
| `PRAISONAI_BACKEND` | `auto` | Force backend: `uv` / `pipx` / `venv` / `system` / `auto` |
| `PRAISONAI_INSTALL_DIR` | `~/.praisonai` | Base dir for the venv fallback |
| `PRAISONAI_NO_MODIFY_PATH` | `0` | Skip shell rc PATH modification (`1` to enable) |
| `PRAISONAI_SKIP_VENV` | `0` | Skip isolation entirely (`1` to enable) |
| `PRAISONAI_DRY_RUN` | `0` | Preview mode |
| `PRAISONAI_NO_ONBOARD` | `0` | Skip interactive onboarding entirely |

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To maintain consistency across all documentation pages, please include PRAISONAI_PYTHON and PRAISONAI_NO_PROMPT in the environment variables table, as they are documented in docs/install/installer.mdx.

Comment on lines +169 to +179
| Variable | Default | Description |
|----------|---------|-------------|
| `PRAISONAI_VERSION` | `latest` | Version to install |
| `PRAISONAI_EXTRAS` | `""` | Comma-separated extras (defaults to `all`) |
| `PRAISONAI_BACKEND` | `auto` | Force backend: `uv` / `pipx` / `venv` / `system` / `auto` |
| `PRAISONAI_INSTALL_DIR` | `~/.praisonai` | Base dir for the venv fallback |
| `PRAISONAI_NO_MODIFY_PATH` | `0` | Skip shell rc PATH modification (`1` to enable) |
| `PRAISONAI_SKIP_VENV` | `0` | Skip isolation entirely (`1` to enable) |
| `PRAISONAI_PYTHON` | auto-detect | Python executable path |
| `PRAISONAI_DRY_RUN` | `0` | Preview mode (`1` to enable) |
| `PRAISONAI_NO_ONBOARD` | `0` | Skip onboarding (`1` to enable) |

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To maintain consistency across all documentation pages, please include PRAISONAI_NO_PROMPT in the environment variables table, as it is documented in docs/install/installer.mdx.

@MervinPraison MervinPraison merged commit ab05b28 into main Jun 23, 2026
24 checks passed
@MervinPraison MervinPraison deleted the claude/issue-824-20260623-1206 branch June 23, 2026 12:22
@mintlify

mintlify Bot commented Jun 23, 2026

Copy link
Copy Markdown

Preview deployment for your docs. Learn more about Mintlify Previews.

Project Status Preview Updated (UTC)
praisonai 🔴 Failed Jun 23, 2026, 12:23 PM

💡 Tip: Enable Workflows to automatically generate PRs for you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

docs: update installer pages for frictionless uv/pipx/venv install (PR #2176 in PraisonAI)

1 participant