解决 ERROR: Could not find a version that satisfies the requirement xxx 的问题

解决 ERROR: Could not find a version that satisfies the requirement xxx 的问题

ERROR: Could not find a version that satisfies the requirement xxx 的提示
出现这个问题的原因是python国内网络不稳定,直接导致报错。因此我们常用镜像源来解决此问题。如下

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

内容参考原博文:https://blog.csdn.net/qq_45603919/article/details/108906920

你可能感兴趣的:(python)