Anaconda3安装错误

Anaconda3安装错误

安装 Anaconda3 时出现“安装错误” - 没有其他信息。在安装过程中,我收到消息“Anaconda3 已安装 - 使用 conda update anaconda3”。因此,我尝试使用 conda 并得到:

CondaHTTPError:URL 的 HTTP 000 连接失败

有什么想法吗?

答案1

屏幕上是否还显示下列线条?

An HTTP error occurred when trying to retrieve this URL.

HTTP errors are often intermittent, and a simple retry will get you on your way. SSLError(SSLError("Can't connect to HTTPS URL because the SSL module is not available.",),)

如果是,则如果您可以配置 SSL(如果有证书,请使用证书),则可以解决该错误

在我们的大学里,启用了强防火墙,阻止了许多网站。他们提供证书以配置到 conda。在安装任何新东西或更新 conda 之前,我们在终端中运行以下命令:

conda config --set ssl_verify <location of the certificate.pem file>

关联还有很多方法可以解决上述问题

相关内容