错误:找不到与pip匹配的发行版

21

我正在尝试在我的Python 2.6.6中安装pip,我使用的是Oracle Linux 6

我按照此链接给出的答案进行操作Link

我下载了 get-pip.py 文件并运行了以下命令

sudo python2.6 get-pip.py

然而我得到以下错误

[root@bigdatadev3 Downloads]# sudo python2.6 get-pip.py
DEPRECATION: Python 2.6 is no longer supported by the Python core team, please upgrade your Python. A future version of pip will drop support for Python 2.6
Collecting pip
  Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x3cad210>: Failed to establish a new connection: [Errno 101] Network is unreachable',)': /simple/pip/
  Retrying (Retry(total=3, connect=None, read=None, redirect=None)) after connection broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x3cadad0>: Failed to establish a new connection: [Errno 101] Network is unreachable',)': /simple/pip/
  Retrying (Retry(total=2, connect=None, read=None, redirect=None)) after connection broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x3cad6d0>: Failed to establish a new connection: [Errno 101] Network is unreachable',)': /simple/pip/
  Retrying (Retry(total=1, connect=None, read=None, redirect=None)) after connection broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x3cad790>: Failed to establish a new connection: [Errno 101] Network is unreachable',)': /simple/pip/
  Retrying (Retry(total=0, connect=None, read=None, redirect=None)) after connection broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x3cad110>: Failed to establish a new connection: [Errno 101] Network is unreachable',)': /simple/pip/
  Could not find a version that satisfies the requirement pip (from versions: )
No matching distribution found for pip

错误显示出现了一些网络问题,但我在这里拥有完全开放的互联网访问。

我该如何安装pip?

我还尝试了yum,yum install python-pip 但是它给出了以下信息

[root@bigdatadev3 ~]# yum install python-pip
Loaded plugins: refresh-packagekit, security, ulninfo
Setting up Install Process
No package python-pip available.
Error: Nothing to do

更新1

我使用了以下命令:

python get-pip.py --proxy="MY_PROXY"

我遇到了以下错误

DEPRECATION: Python 2.6 is no longer supported by the Python core team, please upgrade your Python. A future version of pip will drop support for Python 2.6
    Collecting pip
    Exception:
    Traceback (most recent call last):
      File "/tmp/tmpnz7ISh/pip.zip/pip/basecommand.py", line 215, in main
        status = self.run(options, args)
      File "/tmp/tmpnz7ISh/pip.zip/pip/commands/install.py", line 324, in run
        requirement_set.prepare_files(finder)
      File "/tmp/tmpnz7ISh/pip.zip/pip/req/req_set.py", line 380, in prepare_files
        ignore_dependencies=self.ignore_dependencies))
      File "/tmp/tmpnz7ISh/pip.zip/pip/req/req_set.py", line 554, in _prepare_file
        require_hashes
      File "/tmp/tmpnz7ISh/pip.zip/pip/req/req_install.py", line 278, in populate_link
        self.link = finder.find_requirement(self, upgrade)
      File "/tmp/tmpnz7ISh/pip.zip/pip/index.py", line 465, in find_requirement
        all_candidates = self.find_all_candidates(req.name)
      File "/tmp/tmpnz7ISh/pip.zip/pip/index.py", line 423, in find_all_candidates
        for page in self._get_pages(url_locations, project_name):
      File "/tmp/tmpnz7ISh/pip.zip/pip/index.py", line 568, in _get_pages
        page = self._get_page(location)
      File "/tmp/tmpnz7ISh/pip.zip/pip/index.py", line 683, in _get_page
        return HTMLPage.get_page(link, session=self.session)
      File "/tmp/tmpnz7ISh/pip.zip/pip/index.py", line 792, in get_page
        "Cache-Control": "max-age=600",
      File "/tmp/tmpnz7ISh/pip.zip/pip/_vendor/requests/sessions.py", line 488, in get
        return self.request('GET', url, **kwargs)
      File "/tmp/tmpnz7ISh/pip.zip/pip/download.py", line 386, in request
        return super(PipSession, self).request(method, url, *args, **kwargs)
      File "/tmp/tmpnz7ISh/pip.zip/pip/_vendor/requests/sessions.py", line 475, in request
        resp = self.send(prep, **send_kwargs)
      File "/tmp/tmpnz7ISh/pip.zip/pip/_vendor/requests/sessions.py", line 596, in send
        r = adapter.send(request, **kwargs)
      File "/tmp/tmpnz7ISh/pip.zip/pip/_vendor/cachecontrol/adapter.py", line 47, in send
        resp = super(CacheControlAdapter, self).send(request, **kw)
      File "/tmp/tmpnz7ISh/pip.zip/pip/_vendor/requests/adapters.py", line 390, in send
        conn = self.get_connection(request.url, proxies)
      File "/tmp/tmpnz7ISh/pip.zip/pip/_vendor/requests/adapters.py", line 290, in get_connection
        proxy_manager = self.proxy_manager_for(proxy)
      File "/tmp/tmpnz7ISh/pip.zip/pip/_vendor/requests/adapters.py", line 184, in proxy_manager_for
        **proxy_kwargs
      File "/tmp/tmpnz7ISh/pip.zip/pip/_vendor/requests/adapters.py", line 43, in SOCKSProxyManager
        raise InvalidSchema("Missing dependencies for SOCKS support.")
    InvalidSchema: Missing dependencies for SOCKS support.

可能会出现以下警告信息:DEPRECATION: Python 2.6 已不再得到 Python 核心团队的支持,请升级您的 Python。未来版本的 pip 将停止支持 Python 2.6。正在收集 pip... - iFlo
2
我无法升级我的Python,我只能忍受它。 :( - Hardik Gupta
你正在使用代理吗?sudo 不会继承你当前的代理参数。如果是这样,请尝试以下方法:python get-pip.py --proxy="[user:passwd@]proxy.server:port" - iFlo
我之前使用sudo命令这样导出了我的代理:export http_proxy=<MY_PROXY>export https_proxy=<MY_PROXY> - Hardik Gupta
这就是为什么它不起作用,使用sudo将不会使用那些导出。 - iFlo
我应该使用什么?yum安装出现了相同的问题。 - Hardik Gupta
3个回答

6
由于使用sudo,这是一个代理问题。使用sudo启动命令并不能确保像export http_proxy=<MY_PROXY>这样的导出内容仍然是最新的。
你可以尝试以下解决方法:
python get-pip.py --proxy="[user:passwd@]proxy.server:port"

如果您没有用户名/密码,只需:

python get-pip.py --proxy="proxy.server:port"

例子:

python get-pip.py --proxy="192.168.0.12:3128"

我需要在双引号中提供代理吗? - Hardik Gupta
你应该看这里:https://dev59.com/CVkT5IYBdhLWcg3wStzQ - iFlo

3

首先在Windows中以管理员身份运行命令提示符。然后尝试使用以下命令:python get-pip.py --trusted-host=files.pythonhosted.org --trusted-host=pypi.org。我已经尝试过并且对我有效。


为什么你认为他们在运行Windows,当他们明确说明了是Oracle Linux? - RaidPinata

0

我更新了我的~/.pip/pip.conf文件,如下所示:

index-url = https://
trusted-host={my-artifactory-url}

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接