We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I searched through issues but didn't find anything similar - apologies if there's already an issue that I missed.
pipx let's you install ('inject') additional packages into an env e.g. add psycopg2 into the env for visidata so you can connect to Postgres:
psycopg2
visidata
pipx install visidata pipx inject visidata psycopg2
Does uv have this capability now or, if not, is it on the roadmap?
uv
The text was updated successfully, but these errors were encountered:
I think we explicitly won't provide this — you should enumerate all the dependencies in the installation.
There's #3560 but I'm not sure if it's explicitly discussed.
Sorry, something went wrong.
Based on the issue you linked, seems like the way this works in uv is via the --with arg, yes?
--with
# pipx pipx install visidata pipx inject visidata psycopg2 # uv uv tool install --with psycopg2 visidata
Yep! This is covered in https://docs.astral.sh/uv/concepts/tools/#including-additional-dependencies — the RFC isn't necessarily exactly what was implemented.
Great. Will close this issue, and now anyone coming from pipx and the semantics of 'inject' will find the uv way of doing it.
No branches or pull requests
I searched through issues but didn't find anything similar - apologies if there's already an issue that I missed.
pipx let's you install ('inject') additional packages into an env e.g. add
psycopg2
into the env forvisidata
so you can connect to Postgres:Does
uv
have this capability now or, if not, is it on the roadmap?The text was updated successfully, but these errors were encountered: