Python库安装:ERROR: Could not find a version that satisfies the requirement tqdm ERROR: No matching dis

问题

ERROR: Could not find a version that satisfies the requirement tqdm
ERROR: No matching distribution found for tqdm

Python库安装:ERROR: Could not find a version that satisfies the requirement tqdm ERROR: No matching dis_第1张图片

原因

一般情况下是因为网络不稳定,所以导致失败

解决方法

更换镜像源

清华镜像源: https://pypi.tuna.tsinghua.edu.cn/simple
中国科学技术大学 : https://pypi.mirrors.ustc.edu.cn/simple
豆瓣:http://pypi.douban.com/simple/
阿里: http://mirrors.aliyun.com/simple/

命令如下

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

同理,在更新pip的时候也会出现类似问题,可用如下命令解决

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

成功安装
Python库安装:ERROR: Could not find a version that satisfies the requirement tqdm ERROR: No matching dis_第2张图片
Python库安装:ERROR: Could not find a version that satisfies the requirement tqdm ERROR: No matching dis_第3张图片

你可能感兴趣的:(遇到的错误及解决方法,python,开发语言)