为了账号安全,请及时绑定邮箱和手机立即绑定

特定软件包版本的 pip 依赖树

特定软件包版本的 pip 依赖树

一只斗牛犬 2022-11-09 16:58:39
我正在尝试查看特定包所需的所有依赖项(在这种情况下,我使用的是 pipdeptree),但事实证明它只向我显示了已安装包的依赖项树。假设我正在使用石墨烯:2.1.0,例如:$ pipdeptree -p grapheneWarning!!! Possibly conflicting dependencies found:* graphql-relay==0.5.0 - graphql-core [required: >=0.5.0,<2, installed: 2.3.1]* social-auth-core==3.2.0 - requests [required: >=2.9.1, installed: 2.8.1]------------------------------------------------------------------------现在当我尝试时$ pipdeptree -p graphene==40.0.2 (不存在)。Warning!!! Possibly conflicting dependencies found:* graphql-relay==0.5.0 - graphql-core [required: >=0.5.0,<2, installed: 2.3.1]* social-auth-core==3.2.0 - requests [required: >=2.9.1, installed: 2.8.1]------------------------------------------------------------------------似乎它只考虑了一个稳定的版本,我想要的是一个与我通过控制台提供的特定版本相关的依赖树,我希望我对此很清楚。
查看完整描述

1 回答

?
翻阅古今

TA贡献1780条经验 获得超5个赞

我相信johnnydep可以提供帮助:

$ johnnydep --verbose 0 'graphene==2.1.0'

name                            summary

------------------------------  ---------------------------------------

graphene==2.1.0                 GraphQL Framework for Python

├── aniso8601<4,>=3             A library for parsing ISO 8601 strings.

├── graphql-core<3,>=2.0        GraphQL implementation for Python

│   ├── promise<3,>=2.3         Promises/A+ implementation for Python

│   │   └── six                 Python 2 and 3 compatibility utilities

│   ├── rx<2,>=1.6              Reactive Extensions (Rx) for Python

│   └── six>=1.10.0             Python 2 and 3 compatibility utilities

├── graphql-relay<1,>=0.4.5     Relay implementation for Python

│   ├── graphql-core<2,>=0.5.0  GraphQL implementation for Python

│   │   ├── promise>=2.0        Promises/A+ implementation for Python

│   │   │   └── six             Python 2 and 3 compatibility utilities

│   │   └── six>=1.10.0         Python 2 and 3 compatibility utilities

│   ├── promise>=0.4.0          Promises/A+ implementation for Python

│   │   └── six                 Python 2 and 3 compatibility utilities

│   └── six>=1.10.0             Python 2 and 3 compatibility utilities

├── promise<3,>=2.1             Promises/A+ implementation for Python

│   └── six                     Python 2 and 3 compatibility utilities

└── six<2,>=1.10.0              Python 2 and 3 compatibility utilities


查看完整回答
反对 回复 2022-11-09
  • 1 回答
  • 0 关注
  • 90 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信