您现在的位置是:首页 > 技术教程 正文

解决:WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None))

admin 阅读: 2024-03-17
后台-插件-广告管理-内容页头部广告(手机)

解决:WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None))

文章目录

  • 解决:WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None))
    • 背景
    • 报错问题
    • 报错翻译
    • 报错原因
    • 解决方法
      • 方法一:更换下载源
      • 方法二:设置超时时间
      • 方法三:换源+设置超时
      • 方法四:检查或更换网络环境
      • 方法五:离线安装
      • 今天的分享就到此结束了

背景

在使用之前的代码时,报错:
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘NewConnectionError(’: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution’)':
/packages/ad/fd/6bfe87920d7f4fd475acd28500a42482b6b84479832bdc0fe9e589a60ceb/Keras-2.3.1-py2.py3-none-any.whl

报错问题

WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /packages/ad/fd/6bfe87920d7f4fd475acd28500a42482b6b84479832bdc0fe9e589a60ceb/Keras-2.3.1-py2.py3-none-any.whl
  • 1
  • 2
  • 3
  • 4
  • 5

截图如下:

在这里插入图片描述

报错翻译

主要报错信息内容翻译如下所示:

WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError(': Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /packages/ad/fd/6bfe87920d7f4fd475acd28500a42482b6b84479832bdc0fe9e589a60ceb/Keras-2.3.1-py2.py3-none-any.whl
  • 1
  • 2
  • 3
  • 4
  • 5

翻译:

警告:在连接中断后重试(Retry(total=4, connect=None, read=None, redirect=None, status=None)) NewConnectionError(': Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /packages/ad/fd/6bfe87920d7f4fd475acd28500a42482b6b84479832bdc0fe9e589a60ceb/Keras-2.3.1-py2.py3-none-any.whl
  • 1
  • 2
  • 3
  • 4
  • 5

报错原因

经过查阅资料,发现是在安装codecs,theano等模块时,经常出现这个问题。主要原因是网络连通性不好,网络连接不稳定(网络问题)。所以需要自己设定或者更换安装源。

小伙伴们按下面的解决方法即可解决!!!

解决方法

要解决这个错误,有如下几种方法:

方法一:更换下载源

修改默认的pip安装源请参考:修改默认的pip安装源(修改默认的PyPI安装源)

临时使用常用的国内源下载,例如:

清华源:

pip install xxxx -i https://pypi.tuna.tsinghua.edu.cn/simple
  • 1

豆瓣源:

pip install xxxx -i https://pypi.douban.com/simple
  • 1

附,国内各大源列表:

名称地址
阿里https://mirrors.aliyun.com/pypi/simple
豆瓣http://pypi.douban.com/simple/
清华大学https://pypi.tuna.tsinghua.edu.cn/simple
中国科学技术大学https://pypi.mirrors.ustc.edu.cn/simple
华中理工大学http://pypi.hustunique.com/simple
山东理工大学http://pypi.sdutlinux.org/simple
网易https://mirrors.163.com/pypi/simple/
腾讯https://mirrors.cloud.tencent.com/pypi/simple

方法二:设置超时时间

使用超时时间设置,例如:

pip --default-timeout=500 install xxxx pip --default-timeout=500 install -U pip xxxx
  • 1
  • 2

注意,等号后面的超时时间值可以调整。

方法三:换源+设置超时

同时更换国内源 + 设置超时时间,(就是有时仍慢了点,但仍有可能传输中断):

pip --default-timeout=500 install xxxx -i https://pypi.tuna.tsinghua.edu.cn/simple
  • 1

或者

pip --default-timeout=500 install xxxx -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
  • 1

注意:如果还是超时了,可以设置更大的超时时间数

在这里插入图片描述

方法四:检查或更换网络环境

检查下是否开启代理或者VPN,将其关闭再使用国内镜像进行尝试看看是否可以解决,我这边有过代理开启导致网络太慢而报错的。

或者干脆换一个网络条件更好的网络环境。

方法五:离线安装

当网络条件太差并且没有别的选择时,而上述方法都行不通,就只能手动下载离线安装包,进行离线安装了。以catboost为例。

在这里插入图片描述

在这里插入图片描述

安装命令如下:

pip install catboost-0.24.2-cp36-none-win_amd64.whl

今天的分享就到此结束了

欢迎点赞评论关注三连

在这里插入图片描述

标签:
声明

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

在线投稿:投稿 站长QQ:1888636

后台-插件-广告管理-内容页尾部广告(手机)
关注我们

扫一扫关注我们,了解最新精彩内容

搜索
排行榜