我试图在Windows 10上安装Python pip包。不幸的是,我工作的代理给我带来了麻烦。
我尝试的事情:
python -m pip install --proxy "http://sam.s1:1234@proxy.det.nsw.edu.au:8080"
python -m pip install --proxy http://sam.s1:1234@proxy.det.nsw.edu.au:8080
python -m pip install --proxy sam.s1:1234@proxy.det.nsw.edu.au:8080
set HTTP_PROXY=sam.s1:1234@proxy.det.nsw.edu.au:8080
set HTTPS_PROXY=%HTTP_PROXY%
set FTP_PROXY=%HTTP_PROXY%
[global]
proxy = "http://sam.s1:1234@proxy.det.nsw.edu.au:8080"
trusted-host = pypi.python.org
他们都给我类似的错误,例如:
Retrying (Retry(total=0, connect=None, read=None, redirect=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x000002A6F091B080>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed',))': /simple/django/
和
Retrying (Retry(total=0, connect=None, read=None, redirect=None)) after connection broken by 'ConnectTimeoutError(<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x000002142813B128>, 'Connection to pypi.python.org timed out. (connect timeout=15)')': /simple/django/
和
Retrying (Retry(total=0, connect=None, read=None, redirect=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 407 Proxy Authentication Required',))': /simple/django/
虽然一劳永逸地整理如何通过代理下载软件包会很好,但我会解决任何完全绕过代理的方法的说明,比如下载软件包并从源代码编译(我通常使用Ubuntu,所以我不知道如何在Windows上做这类事情。
其他信息:
$ pip list
的值来更改[list]
的输出。答案 0 :(得分:2)
我不知道代理问题,但您可以从Python包索引(PyPI)下载Python包并使用pip安装它们。在大多数情况下,不需要从源代码编译,绝对不能使用Django。
您可以下载Django here,然后使用pip install <path to downloaded package>
安装它。