解决pip安装包报错:WARNING: Retrying (Retry(XXX) after connection broken by ‘ProxyError(‘

下面以ubuntu系统为例,windows可以参考类似的解决思路

问题

pip安装任何包都报错WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘ProxyError(‘Cannot connect to proxy.’, ConnectionResetError(104, ‘连接被对方重设’))’:

即使下载源码,使用pip setup.py install命令安装仍旧报错

解决思路

  1. 改变pip源,使用以下命令安装
    pip install 包名 -i 源url地址 --trusted-host 源域名
    e.g.: pip install keras -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

常见的国内pip源
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

方法1无效的情况下,先不要考虑源码安装,这会导致你每个包都手动安装,很麻烦,甚至还有一堆错误。先考虑方法2

  1. 查看系统是否开了代理,关闭代n理
    查看是否开了代理:
    env | grep -i proxy

修改配置文件关代理:
sudo vim /etc/environment
source /etc/profile

检查后还有代理,使用以下命令:
unset http_proxy
unset https_proxy

你可能感兴趣的:(python,ubuntu)