python ERROR: Could not find a version that satisfies the requirement XXX解决方法

打开别人写的代码,发现错误:python ERROR: Could not find a version that satisfies the requirement XXX解决方法_第1张图片
python ERROR: Could not find a version that satisfies the requirement XXX解决方法_第2张图片
一开始我直接pip install CORS,报错
那么我发现可以用豆瓣源下载

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

下swagger的包的时候发现豆瓣源死活下不了,于是换了清华源就可以了

pip install Swagger  -i https://pypi.tuna.tsinghua.edu.cn/simple/ --trusted-host pypi.douban.com

可能有人到这里就可以了,但我还不行

我做完了这些,虽然CORS和Swagger显示成功下载了,但是还是显示这些东西不存在,代码无法运行,我就直接下它想导的东西flask_cors和flasgger

pip install flasgger  -i https://pypi.tuna.tsinghua.edu.cn/simple/ --trusted-host pypi.douban.com
pip install flask_cors  -i https://pypi.tuna.tsinghua.edu.cn/simple/ --trusted-host pypi.douban.com

做完这些可算可以了,老泪纵横

你可能感兴趣的:(python,flask,vscode)