Python-无法在Windows上安装pip - 找不到匹配的pip分布

问题描述 投票:2回答:3

我正在尝试在Windows 8上安装pip库。当前的python版本 - 2.7.3。我从https://pip.pypa.io/en/stable/installing/下载了get-pip.py

在命令提示符(以管理员身份)执行以下命令Python get-pip.py时,出现以下错误。我在公司网络上运行它。这个命令是否指望我提供ip地址?我试着寻找解决方案,但无法得到满意的答案。有解决方案吗?如果没有,有什么替代方案吗?请建议

C:\windows\system32>cd C:\Python27

C:\Python27>python get-pip.py
Collecting pip
  Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connec
tion broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.conne
ction.VerifiedHTTPSConnection object at 0x03654450>: Failed to establish a new c
onnection: [Errno 10061] No connection could be made because the target machine
actively refused it',)': /simple/pip/
  Retrying (Retry(total=3, connect=None, read=None, redirect=None)) after connec
tion broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.conne
ction.VerifiedHTTPSConnection object at 0x03654490>: Failed to establish a new c
onnection: [Errno 10061] No connection could be made because the target machine
actively refused it',)': /simple/pip/
  Retrying (Retry(total=2, connect=None, read=None, redirect=None)) after connec
tion broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.conne
ction.VerifiedHTTPSConnection object at 0x03654410>: Failed to establish a new c
onnection: [Errno 10061] No connection could be made because the target machine
actively refused it',)': /simple/pip/
  Retrying (Retry(total=1, connect=None, read=None, redirect=None)) after connec
tion broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.conne
ction.VerifiedHTTPSConnection object at 0x03654150>: Failed to establish a new c
onnection: [Errno 10061] No connection could be made because the target machine
actively refused it',)': /simple/pip/
  Retrying (Retry(total=0, connect=None, read=None, redirect=None)) after connec
tion broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.conne
ction.VerifiedHTTPSConnection object at 0x03654550>: Failed to establish a new c
onnection: [Errno 10061] No connection could be made because the target machine
actively refused it',)': /simple/pip/
  Could not find a version that satisfies the requirement pip (from versions: )
No matching distribution found for pip

C:\Python27>
python windows python-2.7 pip
3个回答
0
投票

所有Python版本都有Windows msi installers collection和一些Python软件包,包括32位和64位。你需要

  1. 安装setuptools
  2. 安装点子

之后我在C:\ Python27 \ Scripts \ pip.exe找到了pip。现在您可以将它添加到您的路径中


0
投票

你和互联网有联系吗? 首先连接到Internet并再次键入此命令。如果那时这个问题也解决不了。下载python安装时可以选择安装pip。检查该选项并在您的系统中安装pip。 可以选择将pip添加到你的path variable中。 如果您面对安装pip,请参阅此link


0
投票

在断开公司使用的互联网连接后,我可以成功安装pip。它试图以某种方式拒绝连接请求。一旦我连接到当地的咖啡店热点,它就完美无缺。谢谢你的支持。 Pip安装在python 2.7.3上

Microsoft Windows [Version 6.3.9600]
(c) 2013 Microsoft Corporation. All rights reserved.

C:\windows\system32>cd C:\Python27

C:\Python27>python get-pip.py
Collecting pip
c:\users\aja67\appdata\local\temp\tmpvssw7v\pip.zip\pip\_vendor\requests\package
s\urllib3\util\ssl_.py:318: SNIMissingWarning: An HTTPS request has been made, b
ut the SNI (Subject Name Indication) extension to TLS is not available on this p
latform. This may cause the server to present an incorrect TLS certificate, whic
h can cause validation failures. You can upgrade to a newer version of Python to
 solve this. For more information, see https://urllib3.readthedocs.io/en/latest/
security.html#snimissingwarning.
c:\users\aja67\appdata\local\temp\tmpvssw7v\pip.zip\pip\_vendor\requests\package
s\urllib3\util\ssl_.py:122: InsecurePlatformWarning: A true SSLContext object is
 not available. This prevents urllib3 from configuring SSL appropriately and may
 cause certain SSL connections to fail. You can upgrade to a newer version of Py
thon to solve this. For more information, see https://urllib3.readthedocs.io/en/
latest/security.html#insecureplatformwarning.
  Downloading pip-9.0.1-py2.py3-none-any.whl (1.3MB)
    100% |################################| 1.3MB 328kB/s
Collecting wheel
  Downloading wheel-0.29.0-py2.py3-none-any.whl (66kB)
    100% |################################| 71kB 597kB/s
Installing collected packages: pip, wheel
Successfully installed pip-9.0.1 wheel-0.29.0
c:\users\aja67\appdata\local\temp\tmpvssw7v\pip.zip\pip\_vendor\requests\package
s\urllib3\util\ssl_.py:122: InsecurePlatformWarning: A true SSLContext object is
 not available. This prevents urllib3 from configuring SSL appropriately and may
 cause certain SSL connections to fail. You can upgrade to a newer version of Py
thon to solve this. For more information, see https://urllib3.readthedocs.io/en/
latest/security.html#insecureplatformwarning.

C:\Python27>
© www.soinside.com 2019 - 2024. All rights reserved.