Python/Article/pip操作/pip.md

13 lines
177 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

## python查看包的依赖关系
1.先手动安装:
```shell
pip install pipdeptree
```
2使用pipdeptree来查看库包的依赖
```shell
pipdeptree -p xxxx包名
```