A command line utility to display dependency tree of the installed Python packages
pythonpipdependency-graph
주요 지표
스타 성장
스타
3k
포크
162
주간 성장
—
이슈
0
1k2k3k
2023년 1월2023년 8월2024년 3월2024년 10월2025년 5월2025년 12월2026년 7월
아티팩트crates.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.