python pip install 安装包失败解决方法

错误情况

基本上初学者,如果没有配置好镜像都会发生的问题。
尤其是在安装pytorch、tensorflow等深度学习框架。
像之前用了清华的镜像,但是发现可能版本过老之类不明原因总是无法正常连接、下载。
出现错误诸如:

CondaHTTPError: HTTP 502 BAD GATEWAY for url 
A remote server error occurred when trying to retrieve this URL.
A 500-type error (e.g. 500, 501, 502, 503, etc.) indicates the server failed to
fulfill a valid request.  The problem may be spurious, and will resolve itself if you
try your request again.  If the problem persists, consider notifying the maintainer
of the remote server.

解决方法

正常情况下会推荐使用anaconda或者ide内一些特殊插件解决。
之前网上找到一个很好用的方法,是国内的豆瓣上传的package库
在terminal中断输入

pip install 想要安装的包名字 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

基本上就可以在仅用国内网络的情况下安装大多数常用包

你可能感兴趣的:(新手,python,pip,深度学习,conda)