I am behind a corporate firewall, while I can access the pypi website, I cannot install packages via pip. I get the 407 error:
"Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError('Tunnel connection failed: 407 authenticationrequired'))': /simple"
I tried various options like:
pip install --proxy=http://proxyhost:proxy_port PackageName which doesn't work
and even setting
http_proxy=http://username:password@proxyAddress:port https_proxy=https://username:password@proxyAddress:port
none of these work because of the corporate firewall. How can I install the packages?