Unable to use Conda with Anaconda 2018.2 on Windows

前端 未结 4 2017
梦如初夏
梦如初夏 2020-12-18 12:59

I just did a fresh installation of Anaconda 2018.2 on Windows 10. This anaconda version uses python v3.7. While running conda for updating conda update conda, I

4条回答
  •  星月不相逢
    2020-12-18 13:02

    I had a similar problem running conda on my work laptop behind a firewall. Create a .condarc config file in your home directory, typically 'c:\users\[your user id]', if one doesn't already exist. Add an entry to turn off SSL verification. Looks like this:

    ssl_verify:  false
    

    Save the file and retry the conda command.

    If this doesn't work and your computer is behind a firewall. Make sure the proxy server entries are also defined in the .condarc config file. Example:

    proxy_servers:
       http: http://www.proxy.com:8080
       https: https://www.proxy.com:8080
    

提交回复
热议问题