docs: improve install discoverability and recommend pipx/uv#8
Merged
rahim-bhojani merged 1 commit intodremio:mainfrom Mar 26, 2026
Merged
Conversation
… pip A non-dev user tried installing via Claude Code and hit three issues: 1. Claude found `dremio-client` (wrong package) instead of `dremio-cli` 2. `pip install` failed with `externally-managed-environment` on modern macOS 3. PATH wasn't configured for `~/.local/bin` Changes: - Lead install instructions with `pipx`/`uv tool install` (isolated by default) - Add explicit note that `dremio-client` is a different, unrelated package - Add tip explaining the `externally-managed-environment` error - Update PyPI description to include install command for LLM discoverability - Add `dremio-cloud` and `official` keywords to pyproject.toml Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
rahim-bhojani
approved these changes
Mar 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
pipx/uv tool installinstead of barepip— avoidsexternally-managed-environmenterrors on modern macOS/Linuxdremio-clientis an unrelated package (LLMs were installing it instead ofdremio-cli)Context
A non-dev user asked Claude Code to "find the dremio CLI and install it." Claude found
dremio-client(wrong package), hit the externally-managed-environment error, struggled with PATH, then hit missing deps in the wrong package. None of these are bugs indremio-cli, but we can prevent the confusion with better docs and metadata.Test plan
pipx install dremio-cliworks on a clean macOS machine🤖 Generated with Claude Code