根因:本地代理未配置或者配置不对
解决方法: 方法一: 使用开源的镜像源配置或者公司内部镜像源,举例:
[global]
index-url = https://XXXXXX.com/pypi/simple
trusted-host = mirrors.XXXXXX.com
timeout = 60
在终端执行命令:
pip config set global.trusted-host XXXXXX.com
pip config set global.index-url http://XXXXXX.com/pypi/simple/
建议使用本方法,可以一次性解决该问题。
方法二:或者每次使用命令指定镜像源
比如使用清华大学的镜像源安装pyspider :
pip install -i Simple Index pyspider
,本方法缺点是如果访问量大可能导致耗时较长。
2 ERROR: No matching distribution found for XXX
根因:requirement.txt中没看XXX版本号不对