在python安装库时报错:Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None))

1、报错信息

在python安装库时报错:Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None))_第1张图片
ERROR: Could not find a version that satisfies the requirement openai (from versions: none)
ERROR: No matching distribution found for openai

2、解决方法

pip install openai -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

在pip install opoenai 后面加上软件源并对该存储库给予信任,其中openai是你需要下载的库,你根据自己的实际需求自行修改

国内常用镜像:

https://pypi.tuna.tsinghua.edu.cn/simple/# 清华大学

https://mirrors.aliyun.com/pypi/simple/# 阿里云

https://pypi.douban.com/simple/# 豆瓣

https://pypi.mirrors.ustc.edu.cn/simple/# 中国科学技术大学

https://pypi.hustunique.com/# 华中科技大学

可能是版本过高导致,将pip下降为20.2版本就可以避免上述问题,降版本以后就可以直接用pip install安装库,不用带其他参数。

python -m pip install pip==20.2 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

参考:

https://blog.csdn.net/qq_41684249/article/details/110505807

https://blog.csdn.net/lsf_007/article/details/87931823

你可能感兴趣的:(Python,后端,python,windows)