CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/linux-64/current_repodata.json>
Elapsed: -
(1)查看conda 配置是否添加清华源通道
gedit ~/.condarc
## 主要是删除此行: - defaults
如果不行可以把https换为http
以下参考:Conda - Downloaded bytes did not match Content-Length 问题解决方案
2, 网络太差
设置conda下载的timeout,然后再进行尝试
conda config --set remote_read_timeout_secs 1000.0
3, 从conda的源下载好要安装的包,直接采用本地安装的方式。
conda install --offline ###
#or
conda install --use-local