[Python系列-23]:WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)
Posted 文火冰糖的硅基工坊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Python系列-23]:WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)相关的知识,希望对你有一定的参考价值。
作者主页(文火冰糖的硅基工坊):文火冰糖(王文兵)的博客_文火冰糖的硅基工坊_CSDN博客
1. 出错提示
无论是通过pip3,还是通过conda,死活就是安装不上,总是说出错。
其实就是说连接超时,下载不了安装包。
检查网络,也是正常的。
2. 进一步的尝试国内网站
pip3 install sklearn -i http://pypi.douban.com/simple
- 阿里云 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/
3. 原因分析
主要意思就是位于pypi.douban.com的存储库不是受信任的或安全的主机,正在被忽略。
要求使用“–trusted host pypi.douban.com”允许此警告。
4. 解决之道
pip3 install sklearn -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
(其中的sklearn是你需要下载的,根据自己需求自行更改)
以上是关于[Python系列-23]:WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)的主要内容,如果未能解决你的问题,请参考以下文章
Python全栈之路系列----之-----re模块(正则表达式)
WARNING: Re-reading the partition table failed
WARNING: You are using pip version 20.1.1; however, version 23.0.1 is available.问题的解决