A command line utility to display dependency tree of the installed Python packages
pythonpipdependency-graph
Métricas clave
Crecimiento de estrellas
Estrellas
3k
Forks
162
Crecimiento semanal
—
Issues
0
1k2k3k
ene 2023ago 2023mar 2024oct 2024may 2025dic 2025jul 2026
Artefactoscrates.iocargo add pipdeptree
README
pipdeptree
pipdeptree displays installed Python packages as a dependency tree.
pip freeze shows a flat list; pipdeptree adds parent-child
relationships and reports dependency conflicts or cycles.
Inspect a tree without installing it. Resolve requirements against a package index, or read a resolved
PEP 751 lock offline:
pipdeptree from-index "flask" # i is a shorthand alias
pipdeptree from-index --requirements requirements.txt
pipdeptree from-lock pylock.toml # l is a shorthand alias
The render flags above, including --summary, work with both subcommands.