pipdeptree Plugin
Display Python package dependency tree.
Commands
Tree
pipdeptree tree show— Show package dependency treepipdeptree tree json— Show package dependency tree as JSONpipdeptree tree warn— Show conflicting/warning packages
Usage Examples
- "Show the dependency tree for installed packages"
- "Which packages depend on requests?"
- "Find conflicting dependencies"
- "Show dependency tree as JSON"
Installation
pip install pipdeptree
Examples
# Show full tree
pipdeptree
# JSON output
pipdeptree --json
# Show package only
pipdeptree -p flask
# Show warnings
pipdeptree --warn
# Reverse tree (show what depends on what)
pipdeptree --reverse