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

问题一:

安装scikit-learn出现 CondaHTTPError: HTTP 000 CONNECTION FAILED for url 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

你可能感兴趣的:(python错误解决)