-
Notifications
You must be signed in to change notification settings - Fork 765
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
Add a pipdeptree
like output
#3272
Comments
I like the idea of having a tree view for this. |
Strong support for this(!) I was about to make a proposal similar to it, although i didn't know |
For reference/design, poetry has |
Opened #4439 to track additional features that did not land in the initial PR. |
pipdeptree is a cool tool for visualizing the dependency tree of python packages. It allows users to see a structured "tree" of dependencies and, using its reverse mode, to understand why a particular dependency is required for our project.
One particularly useful use case of
pipdeptree
is to filter out only the "top-level" packages. This helps in cleaning up*.in
files by leaving the resolution of transitive dependencies to the compilation process.Would it be possible to support something similar to this as a built-in feature of
uv
? something likeuv pip list --format=tree
?The text was updated successfully, but these errors were encountered: