2017-08-30 24 views
0

我想在Windows 8上安装PIP库。当前的Python版本 - 2.7.3。我从https://pip.pypa.io/en/stable/installing/Python-无法在Windows上安装点 - 没有匹配的点分布发现PIP

下载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> 

回答

0

Windows有msi installers collection一些Python包的所有Python版本,32位和64位。您需要

  1. 安装setuptools
  2. 安装PIP

之后,我发现PIP在C:\ Python27 \脚本\ pip.exe。现在你可以将它添加到你的路径

0

你是否与互联网连接?
首先连接到互联网并再次输入此命令。如果那么这个问题也没有解决。安装时下载python可以选择安装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>