当前位置: 代码迷 >> 综合 >> python安装时出现CondaHTTPError:: HTTP 000 CONNECTION FAILED for url 和Retrying (Retry(total=4, 错误解决办法
  详细解决方案

python安装时出现CondaHTTPError:: HTTP 000 CONNECTION FAILED for url 和Retrying (Retry(total=4, 错误解决办法

热度:102   发布时间:2023-10-13 08:38:39.0

问题一:

安装scikit-learn出现 CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://nanomirrors.tuna.tsinghua.edu.cn/anaconda/cloud/linux-64/rpodata.json>Elapsed: -

解决办法:

#首先先添加清华的镜像源
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes#如果无法解决,则删除.condarc配置文件中部分内容
到C:\user\你的用户名.condarc文件下,把default那一行删除,即可解决问题。
# 使用conda进行安装
Conda install scikit-learn

问题二:

Pip安装出现Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) 

解决办法:

方法一:安装时加上-i 镜像url参数
方法二:在c盘user用户下创建pip文件夹,并创建pip.ini文件添加内容:[global] 
index-url = https://pypi.doubanio.com/simple/ 
[install] 
trusted-host=pypi.doubanio.com
  相关解决方案