这是我尝试使用pip下载python-rtkit:
user @ system:〜$ pip install python-rtkit
下载/解压缩python-rtkit
无法找到满足要求python-rtkit
的anty下载根本找不到python-rtkit的分发
将完整登录存储在/home/jgreen/.pip/pip.log
中然后在日志文件中我有:
/ usr / bin / pip于2013年5月29日星期三17:39:36运行 下载/解压缩python-rtkit
获取页面https://pypi.python.org/simple/python-rtkit/
无法获取网址https://pypi.python.org/simple/python-rtkit/:超时
在查找python-rtkit
的下载链接时,将跳过URL https://pypi.python.org/simple/python-rtkit/获取页面https://pypi.python.org/simple/
无法获取网址https://pypi.python.org/simple/:超时
在查找python-rtkit
的下载链接时,将跳过URL https://pypi.python.org/simple/无法获取索引基础网址https://pypi.python.org/simple/
搜索python-rtkit版本的URL:
https://pypi.python.org/simple/python-rtkit/
获取页面https://pypi.python.org/simple/python-rtkit/
无法获取网址https://pypi.python.org/simple/python-rtkit/:超时
在查找python-rtkit
的下载链接时,将跳过URL https://pypi.python.org/simple/python-rtkit/无法找到满足要求python-rtkit
根本找不到python-rtkit
的发行版异常信息:
追踪(最近一次呼叫最后一次):
文件“/usr/lib/python2.7/dist-packages/pip/basecommand.py”,第139行,主要 status = self.run(options,args)
文件“/usr/lib/python2.7/dist-packages/pip/commands/install.py”,第266行,在运行中 requirement_set.prepare_files(finder,force_root_egg_info = self.bundle,bundle = self.bundle)
文件“/usr/lib/python2.7/dist-packages/pip/req.py”,第1026行,在prepare_files中 url = finder.find_requirement(req_to_install,upgrade = self.upgrade)
文件“/usr/lib/python2.7/dist-packages/pip/index.py”,第171行,在find_requirement中 提升DistributionNotFound('找不到%s'%req的所有发行版)
DistributionNotFound:找不到python-rtkit
的发行版日志告诉我它无法找到pypi.python.org/simple页面,但我可以ping pypi.python.org就好了。关于这可能是什么问题的任何想法?提前感谢您的帮助。
编辑: 好的,所以绕过代理并没有改变任何东西。我通过以下方式取得了进展: export HTTPS_PROXY =“http:// username:password @ proxyip:port” 取消设置http_proxy pip install --use-mirrors python-rtkit
最后一行看起来可以找到服务器但由于访问限制而无法写入。然后,当我在sudo下运行该行时,我得到了与之前相同的错误。
答案 0 :(得分:0)
所以我终于通过运行没有上面讨论的sudo的代码来修复它,然后查看它没有访问权限,并使用chmod让每个人都可以访问该特定目录以便它可以工作。有点噱头,但无论我是出于其他想法。