conda update conda时出现 CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/noarch/repodata.json> Elapsed: - 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(MaxRetryError('HTTPSConnectionPool(host=\'mirrors.tuna.tsinghua.edu.cn\', port=443): Max retries exceeded with url: /anaconda/pkgs/free/noarch/repodata.json (Caused by SSLError(SSLError("bad handshake: Error([(\'SSL routines\', \'ssl3_get_server_certificate\', \'certificate verify failed\')])")))'))
时间: 2024-02-18 09:02:08 浏览: 191
Anaconda conda 不能用,一直Solving enviroment 最后报错CondaHTTPError: HTTP 000 CONNECTION FAILED for url
这个错误提示同样是由于连接到清华大学镜像源时 SSL 证书验证失败导致的。你可以尝试以下几种方法进行解决:
1. 重新尝试更新,可能这个错误是由于临时网络问题引起的。
2. 更改清华大学镜像源为其他镜像源,如阿里云镜像、华为云镜像等。
3. 更新 conda 的 SSL 证书,使用以下命令更新:
```
conda config --set ssl_verify no
conda update conda
```
4. 若还是不行,可以尝试手动下载所需的包并通过本地安装的方式进行安装。具体可以参考 conda 文档。
阅读全文