How to make Anaconda work behind HTTP proxy (not https)?

you need to create a .condarc file in you Windows user area:

C:\Users\<username>\

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: https://proxy.yourorg.org:port


ssl_verify: False

If the above solutions didnt work for you, you can try this.

Go to your PC settings and then to proxy. Just give the proxy setting globally for your pc. When I did it, it worked for me.

enter image description here