当我执行pip冻结时,我看到了大量我没有明确安装的Python包,例如。
$ pip freeze
Cheetah==2.4.3
GnuPGInterface==0.3.2
Landscape-Client==11.01
M2Crypto==0.20.1
PAM==0.4.2
PIL==1.1.7
PyYAML==3.09
Twisted-Core==10.2.0
Twisted-Web==10.2.0
(etc.)
有没有办法让我确定pip为什么安装这些特定的依赖包?换句话说,如何确定将这些包作为依赖项的父包?
例如,我可能想要使用Twisted,并且我不想依赖于一个包,直到我更了解如何避免意外卸载或升级它。
你有两个选择。
第一个将输出所有顶级包,不包括子包。请注意,这也将排除示例请求,即使您希望显式地安装它
pip3 list --not-required --format freeze --exclude pip --exclude setuptools
第二个选项是根据现有的requirements.txt文件打印包。
pip3 freeze -r requirements.txt
这将生成一个格式为:
existing-package==1.0.0
## The following requirements were added by pip freeze:
dependency-package==1.0.0
你可以使用sed删除所有额外添加的包:
pip3 freeze -r requirements.txt | sed -n '/## The following requirements were added by pip freeze:/q;p'
你可以尝试pipdeptree,它将依赖项显示为树状结构,例如:
$ pipdeptree
Lookupy==0.1
wsgiref==0.1.2
argparse==1.2.1
psycopg2==2.5.2
Flask-Script==0.6.6
- Flask [installed: 0.10.1]
- Werkzeug [required: >=0.7, installed: 0.9.4]
- Jinja2 [required: >=2.4, installed: 2.7.2]
- MarkupSafe [installed: 0.18]
- itsdangerous [required: >=0.21, installed: 0.23]
alembic==0.6.2
- SQLAlchemy [required: >=0.7.3, installed: 0.9.1]
- Mako [installed: 0.9.1]
- MarkupSafe [required: >=0.9.2, installed: 0.18]
ipython==2.0.0
slugify==0.0.1
redis==2.9.1
让它运行:
pip install pipdeptree
编辑:正如@Esteban在评论中指出的那样,你也可以用-r反向列出树,或者用-p <package_name>列出单个包,这样就可以找到安装的Werkzeug:
$ pipdeptree -r -p Werkzeug
Werkzeug==0.11.15
- Flask==0.12 [requires: Werkzeug>=0.7]