尝试安装scikit-learn using pip时出现以下错误
错误:
Downloading/unpacking scikit-learn
Cannot fetch index base URL https://pypi.python.org/simple/
Could not find any downloads that satisfy the requirement scikit-learn
Cleaning up...
No distributions at all found for scikit-learn
Storing debug log for failure in /home/dmacs/.pip/pip.log我甚至尝试过将代理设置为:
sudo pip --proxy http://user:pass@localhost:port install scikit-learn有人能帮我解决这个问题吗?
提前感谢
发布于 2015-11-26 03:43:27
根据详细信息:
a.你正在安装的服务器有一个网络问题,这个问题似乎不能通过proxy命令来解决。基本上它不能从pip下载列表。
b.如果网络正在运行,请尝试以下命令:
sudo pip install -U pip
sudo pip install -U scikit-learnhttps://stackoverflow.com/questions/33920518
复制相似问题