通过 pip 安装 github 模块时出错
Error when installing github module via pip
我正在尝试使用 pip 从 github 下载 python 模块,但我似乎 运行 下载时遇到问题:
00000@ubuntu-00000:~/Desktop/Python/Blockchain.data$ pip install git+https://github.com/luke-jr/eloipool.git
You are using pip version 7.0.3, however version 7.1.0 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
Collecting git+https://github.com/luke-jr/eloipool.git
Cloning https://github.com/luke-jr/eloipool.git to /tmp/pip-f159a1wz-build
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 18, in <module>
File "/home/00000/anaconda3/lib/python3.4/tokenize.py", line 438, in open
buffer = _builtin_open(filename, 'rb')
FileNotFoundError: [Errno 2] No such file or directory: '/tmp/pip-f159a1wz-build/setup.py'
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-f159a1wz-build
是否了解未安装的原因?
最近在安装selenium的时候遇到了类似的问题。首先升级您的 PIP。然后尝试安装您要安装的任何东西。
模块不包含 setup.py 文件。
最后做了:
git clone https://ADDRESS .
我正在尝试使用 pip 从 github 下载 python 模块,但我似乎 运行 下载时遇到问题:
00000@ubuntu-00000:~/Desktop/Python/Blockchain.data$ pip install git+https://github.com/luke-jr/eloipool.git
You are using pip version 7.0.3, however version 7.1.0 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
Collecting git+https://github.com/luke-jr/eloipool.git
Cloning https://github.com/luke-jr/eloipool.git to /tmp/pip-f159a1wz-build
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 18, in <module>
File "/home/00000/anaconda3/lib/python3.4/tokenize.py", line 438, in open
buffer = _builtin_open(filename, 'rb')
FileNotFoundError: [Errno 2] No such file or directory: '/tmp/pip-f159a1wz-build/setup.py'
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-f159a1wz-build
是否了解未安装的原因?
最近在安装selenium的时候遇到了类似的问题。首先升级您的 PIP。然后尝试安装您要安装的任何东西。
模块不包含 setup.py 文件。
最后做了:
git clone https://ADDRESS .