Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None))

我在安装numpy时碰到的问题:

在这里插入图片描述

解决方法

输入以下命令:
pip install numpy -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
标注的地方是你要安装的东西,不出意外的话应该会安装成功。

然而我又遇到了另一个问题:
Could not install packages due to anEnvironmentError: [WinError 5] 拒绝访问
Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None))_第1张图片
这个问题的解决方法:
在 “install” 之后加上 “- -user” 就可以解决。如下图:
在这里插入图片描述
最后成功安装

你可能感兴趣的:(Python)