Reputation: 36
When I tried to execute "conda update conda", I had this error:
May you help me please!
Upvotes: 2
Views: 9050
Reputation: 6237
If you are behind a proxy with a self-signed certificate authority I have given a detailed answer here:
How to add a custom CA Root certificate to the CA Store used by Python in Windows?
Upvotes: 0
Reputation: 16079
If you are behind a firewall or proxy you may have to set ssl_verify
to false
in your condarc.
In our corporate environment our proxy modifies certificates so ssl verification will fail. In addition we have to set the http and https proxies explicitly.
You can find an example of a .condarc file with these settings in How to make anaconda work behind http proxy not https
Upvotes: 1