我尝试使用以下命令在我的 Ubuntu 10.04 服务器上安装 python 的请求包:
$ pip install requests
但我不断得到回报:
下载/解包请求无法获取 URL http://pypi.python.org/simple/requests:在查找请求的下载链接时将跳过 URL (...url...) 无法获取 URL (...url ...):在查找请求的下载链接时将跳过 URL (...url...) 无法获取索引基本 URL (...url...) 无法找到需求请求,也无法获取索引 URL (.. .url...) 在 ./pip-log.txt 中存储完整的日志
请原谅我在上面使用“(...url...)”,因为 StackOverflow 不允许我发布超过 2 个链接。
这是 pip-log.txt 中的回溯:
Traceback (most recent call last):
File "/usr/lib/python2.6/dist-packages/pip.py", line 252, in main
self.run(options, args)
File "/usr/lib/python2.6/dist-packages/pip.py", line 08, in run
requirement_set.install_files(finder, force_root_egg_info=self.bundle)
File "/usr/lib/python2.6/dist-packages/pip.py", line 1750, in install_files
url = finder.find_requirement(req_to_install, upgrade=self.upgrade)
File "/usr/lib/python2.6/dist-packages/pip.py", line 996, in find_requirement
url_name = self._find_url_name(Link(self.index_urls[0]), url_name, req)
File "/usr/lib/python2.6/dist-packages/pip.py", line 1073, in _find_url_name
raise DistributionNotFound('Cannot find requirement %s, nor fetch index URL %s' % (req, index_url))
DistributionNotFound: Cannot find requirement requests, nor fetch index URL (...url...)
我知道 pip 工作正常,因为我已经通过它安装了许多其他软件包。我也尝试过使用 easy_install 和从源代码安装,但两者都有相同的问题。我是 Python/Django 的相对新手,任何人都可以帮我指出正确的方向吗?