-
Notifications
You must be signed in to change notification settings - Fork 899
New issue
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
Handle verbose output for uv pip list --verbose
#9838
Comments
Handle the `-v/—verbose` flag for `pip list`. Fixes astral-sh#9838
I find that to be a slightly strange behavior but not opposed for compatibility. |
I agree that it is a little weird, I wish My actual use case is getting a list of installed packages and their installation path, so that I can go look for a special file inside the packages. This is to handle some special behaviour in http://github.com/pulumi/pulumi. Does uv provide another way to retrieve this? There's |
Use `pip` instead of `uv pip` to read the package list when determing pulumi plugins. `uv pip` does not support the `-v` flag, which is required to retrive the package location with `pip`, see astral-sh/uv#9838 This requires us to add `pip` as a direct dependency of pulumi. Fixes #18023
Use `pip` instead of `uv pip` to read the package list when determing pulumi plugins. `uv pip` does not support the `-v` flag, which is required to retrive the package location with `pip`, see astral-sh/uv#9838 This requires us to add `pip` as a direct dependency of pulumi. Fixes #18023
Use `pip` instead of `uv pip` to read the package list when determing pulumi plugins. `uv pip` does not support the `-v` flag, which is required to retrive the package location with `pip`, see astral-sh/uv#9838 This requires us to add `pip` as a direct dependency of pulumi. Fixes #18023
Use `pip` instead of `uv pip` to read the package list when determing pulumi plugins. `uv pip` does not support the `-v` flag, which is required to retrive the package location with `pip`, see astral-sh/uv#9838 This requires us to add `pip` as a direct dependency of pulumi. Fixes #18023
Use `pip` instead of `uv pip` to read the package list when determing pulumi plugins. `uv pip` does not support the `-v` flag, which is required to retrive the package location with `pip`, see astral-sh/uv#9838 This requires us to add `pip` as a direct dependency of pulumi. Fixes #18023
Use `pip` instead of `uv pip` to read the package list when determing pulumi plugins. `uv pip` does not support the `-v` flag, which is required to retrive the package location with `pip`, see astral-sh/uv#9838 This requires us to add `pip` as a direct dependency of pulumi. Fixes #18023
Currently
uv pip list
does not handle the-v/--verbose
flag.This option makes
pip list
print the location for each package, as well as the installer.Location
is the location where the package is installed, usually site-packages.Installer
is read from${PACKAGE}-${VERSION}.dist-info/INSTALLER
.https://github.com/pypa/pip/blob/947917be5d8d826efde3f0ad398ec6128cf5bfe8/src/pip/_internal/commands/list.py#L348
When running
uv pip list -v
, instead the-v
option prints verbose logs for uv instead of using the verbose list format:The text was updated successfully, but these errors were encountered: