安装python包出现Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None))
程序员文章站
2022-07-14 09:39:02
...
问题:
安装包出现Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError
解决办法:
pip install boto3 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
国内一些源:
阿里云 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/
直接 -i 加 url 即可:
pip install boto3 -i http://pypi.douban.com/simple
如果出现不信用的信息,加上
--trusted-host pypi.douban.com
就可以了
解决pip *.txt 超时和中止问题
自己写一个脚本即可
import sys
from pip._internal import main as pip_main
def install(package):
pip_main(['--default-timeout=1000','install','-U', package])
if __name__=='__main__':
with open(sys.argv[1]) as f:
for line in f:
install(line)
运行命令
python <your_python_script_file_dir> <your_requirements_file_dir>
上一篇: 单例模式 懒汉与饿汉模式
推荐阅读
-
解决pip安装包时出现 WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None))
-
安装python包出现Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None))
-
pip装包时出现Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) 2020-12-09
-
pip装包时出现Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) 2020-12-09