Python安装软件包出现问题,ERROR: Could not find a version that satisfies the requirement XXX解决方法

我们在使用 pip 安装 python 包时,经常会出现如下错误:

ERROR: Could not find a version that satisfies the requirement Pyinstaller (from versions: none)

ERROR: No matching distribution found for Pyinstaller

直接选用pip源并且信任它的来源就可以解决这种问题。

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

你可能感兴趣的:(python,python,开发语言)