27

我正在尝试使用需求文件安装 python 软件。

>> cat requirements.txt
Cython==0.15.1
numpy==1.6.1
distribute==0.6.24
logilab-astng==0.23.1logilab-common==0.57.1
netaddr==0.7.6
numexpr==2.0.1
ply==2.5
pycallgraph==0.5.1
pyflowtools==0.3.4.1
pylint==0.25.1
tables==2.3.1
wsgiref==0.1.2

所以我创建了一个虚拟环境

>> mkvirtualenv parser

(parser)
>> pip freeze
distribute==0.6.24
wsgiref==0.1.2

(parser)
>> pip install -r requirements.txt

...然后我下载了软件包但没有安装错误: http: //pastie.org/4079800

(parser)
>> pip freeze
distribute==0.6.24
wsgiref==0.1.2

令人惊讶的是,如果我尝试手动安装每个软件包,它们安装得很好。例如:

>> pip install numpy==1.6.1

(parser)
>> pip freeze
distribute==0.6.24
wsgiref==0.1.2
numpy==1.6.1

我搞不清楚了。到底是怎么回事?

PS:我正在使用pipv1.1 和pythonv2.7.2virtualenvvirtualenvwrapper

4

3 回答 3

22

看起来这个numexpr包在安装时依赖于 numpy。Pip 两次通过您的要求:首先它下载所有包并运行每个包setup.py以获取其元数据,然后在第二遍中安装它们。

所以,numexpr 试图在它的 setup.py 中从 numpy 导入,但是当 pip 第一次运行 numexpr 的 setup.py 时,它还没有安装 numpy。

这也是为什么您在一个一个安装软件包时看不到此错误的原因:如果您一次安装一个,则 numpy 将在您pip install执行 numexpr 之前完全安装在您的环境中。

唯一的解决方案是pip install numpy在您运行之前 安装pip install -r requirements.txt——您将无法通过单个 requirements.txt 文件在单个命令中执行此操作。

更多信息在这里:https ://github.com/pypa/pip/issues/25

于 2012-06-13T13:29:10.050 回答
2

我遇到了类似的问题,最终得到以下结果:

cat requirements.txt | sed -e '/^\s*#.*$/d' -e '/^\s*$/d' | xargs -n 1 python -m pip install

这将逐行读取 requirements.txt 并执行 pip。我无法从哪里找到正确的答案,因此对此深表歉意,但我在下面找到了一些理由:

  1. sed 的工作原理:https ://howto.lintel.in/truncate-empty-lines-using-sed/
  2. 另一个类似的答案,但使用 git:https ://stackoverflow.com/a/46494462/7127519

希望这有助于替代方案。

于 2020-08-22T09:08:35.540 回答
0

这有时很烦人,一个 pip 的错误。当您运行 pip install package_name 时,pip 将首先对目标包运行 pip 检查,并安装依赖项(目标包)所需的所有包。但是当你运行 pip install -r requirements.txt pip 会尝试直接安装所有需要的包,从上到下一一列出。有时,依赖项列在它所依赖的包的上方。

The solution is simple:
1.pip install package_name
2.simply put the error package to the bottom of the requirements.txt
3.sometimes a particular version of the package is not be able to  be installed,just install the newest version of it and update the data in requirements.txt
于 2021-12-24T01:14:40.620 回答