pip install 报错 ProxyError
错误信息如下:
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', OSError(0, 'Error'))': /simple/flask-cors/
因为本地开了代理,影响到了pip指令,它知道有代理,但又不知道代理的地址。
因此安装时,直接指定:pip install libname --proxy http://127.0.0.1:7890
可以在指令末尾指定安装包源,安装快一些。-i https://pypi.tuna.tsinghua.edu.cn/simple
pip install libname --proxy http://127.0.0.1:7890 -i https://pypi.tuna.tsinghua.edu.cn/simple
按requirements列名的包来安装所有依赖:
pip install -r requirements.txt --proxy http://127.0.0.1:7890 -i https://pypi.tuna.tsinghua.edu.cn/simple