HannibalTheBarbarian
HannibalTheBarbarian

Reputation: 36

Anaconda CondaHTTPError/SSLError

When I tried to execute "conda update conda", I had this error: enter image description here

May you help me please!

Upvotes: 2

Views: 9050

Answers (2)

Josh Peak
Josh Peak

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

Grr
Grr

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

Related Questions