1

当我运行 pip install hypothesis[pandas] 时,我得到以下信息:

Collecting hypothesis[pandas] Using cached https://files.pythonhosted.org/packages/36/58/222aafec5064d12c2b6123c69e512933b1e82a55ce49015371089d216f89/hypothesis-3.82.1-py3-none-any.whl hypothesis 3.82.1 does not provide the extra 'pandas'

pip install hypothesis[django] 似乎有效,hypothesis.extra 有 django 但没有 pandas。知道pip install for pandas 和 numpy extras 发生了什么吗?

4

2 回答 2

1

更新:假设 3.82.2添加了元数据以支持pip install hypothesis[pandas].


看起来我们根本没有将它添加到 setuptools 元数据中 - 现在通过问题 1671跟踪任何想要修复它的首次贡献者:)

仅供参考,但这实际上不会添加任何依赖项;如果你同时安装了 Hypothesis 和 Pandas>0.19,那么额外的就可以了!

于 2018-11-13T04:34:01.700 回答
0

解决了我的问题, pip install hypothesis[all] 并且还意识到hypothesis.extra选项卡完成只显示了django,并且似乎需要明确导入pandas和numpy extras。

于 2018-11-10T04:17:21.590 回答