安装时出现CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/win-64/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/win-64/repodata.json (Caused by SSLError(SSLError("bad handshake: Error([(\'SSL routines\', \'ssl3_get_server_certificate\', \'certificate verify failed\')])")))'))
时间: 2024-02-18 08:02:06 浏览: 131
针对Collecting package metadata (current-repodata.json)- faile的解决
5星 · 资源好评率100%
这个错误提示是由于连接到清华大学镜像源时 SSL 证书验证失败导致的。你可以尝试以下几种方法进行解决:
1. 重新尝试安装,可能这个错误是由于临时网络问题引起的。
2. 更改清华大学镜像源为其他镜像源,如阿里云镜像、华为云镜像等。
3. 更新 conda 版本,使用以下命令更新:
```
conda update conda
```
4. 若还是不行,可以尝试手动下载所需的包并通过本地安装的方式进行安装。具体可以参考 conda 文档。
阅读全文