Connection to pypi.python. org timed out解决方案

在学校服务器部署flask项目的时候,碰到如下报错:

WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by ‘ConnectTimeoutError(<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7fbe85e425b0>, ‘Connection to pypi.tuna.tsinghua.edu.cn timed out. (connect timeout=15)’)’: /simple/flask/

这个原因有两个,一个是镜像连接不上,另一个大概率是代理设置的问题,导致无法去pip下载。你完全可以在环境里更改代理设置,但是在使用dockerfile部署的时候,还是有一点需要注意的:
如果您知道代理信息,则可以将其传递给命令行:

pip install --proxy=user:pass@server:port numpy

完整的字符串可能很简单:

pip install --proxy=http://proxy.example.com numpy

比如在我这个项目中,直接用的

pip install --proxy=:http://wwwproxy.unimelb.edu.au:8000/ -r requirements
上一篇:AttributeError: module ‘pytest‘ has no attribute ‘assume‘ --解决方案


下一篇:pip win 配置文件遇到的问题