从github安装程序时出错

时间:2018-11-05 22:05:57

标签: python shell ubuntu

我正在尝试安装一些程序。我将它们全部放在一个名为requirements.txt的文本文件中。 我正在Ubuntu计算机上使用以下命令运行此文件:

pip install -r requirements.txt

但是它给出了这个错误:

Obtaining bx-python from git+git://github.com/eranroz/bx-python#egg=bx-python (from -r requirements.txt (line 7))
  Cloning git://github.com/eranroz/bx-python to ./src/bx-python
fatal: unable to connect to github.com:
github.com[0: 140.82.118.3]: errno=Connection timed out
github.com[1: 140.82.118.4]: errno=Connection timed out

Command "git clone -q git://github.com/eranroz/bx-python /DATA/ali/src/bx-python" failed with error code 128 in None

您知道我该如何解决该问题吗?

这是我在requirements.txt中所拥有的:

numpy==1.13.3
pandas==0.23.4
scipy==1.0.0
Cython==0.28.5
scikit-learn==0.19.1
hmm_kit
-e git://github.com/eranroz/bx-python#egg=bx-python

1 个答案:

答案 0 :(得分:0)

关键行是:

fatal: unable to connect to github.com:
github.com[0: 140.82.118.3]: errno=Connection timed out

因此,看起来您正在超时访问GitHub。 GitHub上的速度可能很慢,但是更有可能是某些原因阻止了您到达那里。

您可以使用网络浏览器,curl,wget等从该机器访问github.com吗?