gpt4 book ai didi

python - 一次安装三个包失败 : "pip install numpy pil aptus" but individually they work, 为什么?

转载 作者:太空宇宙 更新时间:2023-11-04 01:34:41 24 4
gpt4 key购买 nike

日志和更多详细信息位于:https://gist.github.com/2890621

stu@vervet ~ $ virtualenv --no-site-packages testingpip
New python executable in testingpip/bin/python
Installing distribute......................done.
stu@vervet ~ $ source testingpip/bin/activate
stu@vervet ~ $ which pip
/home/stu/testingpip/bin/pip
stu@vervet ~ $ which python
/home/stu/testingpip/bin/python
stu@vervet ~ $ pip --log=piplog.log install numpy pil aptus
Downloading/unpacking numpy
...
...
...

最终由于 numpy 依赖性导致命令失败

但是在做:

stu@vervet ~ $ pip install numpy
stu@vervet ~ $ pip install pil
stu@vervet ~ $ pip install aptus

有效

最佳答案

这是由 this line 引起的在 Aptus setup.py 文件中。

您应该将其报告为 Aptus 的错误。如果 Aptus 依赖于 numpy,它应该将它添加到它的依赖列表中,而不是在安装过程中抛出异常。

Aptus 应该打上这样的补丁:

install_requires = []

try: import numpy
except ImportError: install_requires.append('numpy')

setup(
...
install_requires=install_requires,
...
)

关于python - 一次安装三个包失败 : "pip install numpy pil aptus" but individually they work, 为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10937735/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com