我们在使用 pip 安装 python 包时,经常会出现如下错误:
ERROR: Could not find a version that satisfies the requirement xxxx(from versions: none)
ERROR: No matching distribution found for xxxx
直接选用pip源并且 信任它的来源
就可以解决这种问题。
pip install 库包名 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
Python安装包报错ERROR: Could not find a version that satisfies the requirement XXX解决方法 https://blog.csdn.net/ramblerviper/article/details/125648990