I\'m having trouble working with Anaconda behind a proxy at work.
When I have have the following environment variables:
http_proxy: http://domain\\us
you need to create a .condarc file in you Windows user area:
C:\Users\\
The file should contain:
channels:
- defaults
# Show channel URLs when displaying what is going to be downloaded and
# in 'conda list'. The default is False.
show_channel_urls: True
allow_other_channels: True
proxy_servers:
http: http://proxy.yourorg.org:port
https: http://proxy.yourorg.org:port
ssl_verify: False