我正在Ubuntu 12.04中使用以下requirements.txt文件安装几个Python包:

numpy>=1.8.2,<2.0.0
matplotlib>=1.3.1,<2.0.0
scipy>=0.14.0,<1.0.0
astroML>=0.2,<1.0
scikit-learn>=0.14.1,<1.0.0
rpy2>=2.4.3,<3.0.0

下面是两条命令:

$ pip install --download=/tmp -r requirements.txt
$ pip install --user --no-index --find-links=/tmp -r requirements.txt

(第一个程序下载包,第二个程序安装包)。

进程经常被错误停止:

  Could not find a version that satisfies the requirement <package> (from matplotlib<2.0.0,>=1.3.1->-r requirements.txt (line 2)) (from versions: )
No matching distribution found for <package> (from matplotlib<2.0.0,>=1.3.1->-r requirements.txt (line 2))

我手动修复:

pip install --user <package>

然后再次运行第二个PIP安装命令。

但这只适用于特定的包装。当我再次运行第二个pip install命令时,进程停止了,现在抱怨有另一个所需的包,我需要再次重复该过程,即:手动安装新的所需包(使用上面的命令),然后运行第二个pip install命令。

到目前为止,我不得不手动安装6,pytz, nose,现在它抱怨需要mock。

有没有办法告诉pip自动安装所有需要的依赖项,这样我就不必手动一个一个地安装了?

补充:这只发生在Ubuntu 12.04 BTW中。在Ubuntu 14.04中,应用在requirements.txt文件上的pip安装命令可以正常工作。


当前回答

如果包是本地的,不要错过相对路径。 如。

pip install ./<pkg>

终于对我起作用了,而

pip install <pkg>

产生了:

ERROR: Could not find a version that satisfies the requirement <pkg> (from versions: none)
ERROR: No matching distribution found for <pkg>

其他回答

这种方法(将所有依赖项放在一个目录中,而不是从索引中下载)只在目录包含所有包时有效。因此,目录应该包含所有依赖项,以及这些依赖项所依赖的所有包(例如,six, pytz等)。

因此,您应该手动将这些包包含在requirements.txt中(这样第一步就可以显式地下载它们),或者您应该使用PyPI安装所有包,然后pip freeze > requirements.txt来存储所需的所有包的列表。

尽管它并没有真正回答这个具体的问题。其他人也收到了同样的错误信息。

对于那些像我一样最初忘记了-r的人:使用pip install -r requirements.txt, -r对于命令是必不可少的。

原来的答案是:

https://stackoverflow.com/a/42876654/10093070

下面的命令对我有用——

python -m pip install flask

如果包是本地的,不要错过相对路径。 如。

pip install ./<pkg>

终于对我起作用了,而

pip install <pkg>

产生了:

ERROR: Could not find a version that satisfies the requirement <pkg> (from versions: none)
ERROR: No matching distribution found for <pkg>

经过2个小时的搜索,我找到了一种方法,只需一行命令就可以解决它。你需要知道软件包的版本(只需搜索软件包版本)。

命令:

python3 -m pip install --pre --upgrade PACKAGE==VERSION.VERSION.VERSION