2017-05-16 57 views
0

pip install numpyを使用してWindows 8.1にnumpyをインストールしようとしています。407 Windowsで必要なプロキシ認証8.1

それは次のエラーを与える:

set proxy proxy-server="http=username:[email protected]:3128;https=username:[email protected]:3128" 

しかし:私も試してみました認証目的のために

set proxy proxy-server="http=202.141.80.19:3128;https=202.141.80.19:3128" 

Collecting numpy 
    Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connec 
tion broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connectio 
n failed: 407 Proxy Authentication Required',))': /simple/numpy/ 
    Retrying (Retry(total=3, connect=None, read=None, redirect=None)) after connec 
tion broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connectio 
n failed: 407 Proxy Authentication Required',))': /simple/numpy/ 
    Retrying (Retry(total=2, connect=None, read=None, redirect=None)) after connec 
tion broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connectio 
n failed: 407 Proxy Authentication Required',))': /simple/numpy/ 
    Retrying (Retry(total=1, connect=None, read=None, redirect=None)) after connec 
tion broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connectio 
n failed: 407 Proxy Authentication Required',))': /simple/numpy/ 
    Retrying (Retry(total=0, connect=None, read=None, redirect=None)) after connec 
tion broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connectio 
n failed: 407 Proxy Authentication Required',))': /simple/numpy/ 
    Could not find a version that satisfies the requirement numpy (from versions: 
) 
No matching distribution found for numpy 

thisを参照した後、私はcmdでコマンドを次のように実行動作しませんでした。

このエラーを取り除くにはどうすればよいですか?

+0

'netsh'は' cmd'と同じものではありません。リンク先のドキュメントは 'netsh '用です。また、numpyはおそらくWinHTTPを使用しません。 –

答えて

1

これは多くの試みの後に私の仕事を進めるのに役立ちました。

set HTTP_PROXY=http://proxy_userid:[email protected]_ip:proxy_port 
set HTTPS_PROXY=http://proxy_userid:[email protected]_ip:proxy_port 
関連する問題