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