首页 > 解决方案 > 安装 numpy、matplotlib、pandas、IPython 和 seaborn 时出错

问题描述

我在 Windows 机器上使用 python 版本 3.6.1。

我还安装了 Anaconda Python 3.7 版本 64 位图形安装程序。

我尝试安装 numpy、matplotlib、pandas、IPython 和 seaborn,但出现错误“找不到满足 numpy 要求的版本(来自版本:)找不到 numpy 的匹配发行版”

numpy 的命令:

Python –m pip install numpy

它返回这些消息::

Collecting numpy
Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 
'NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object 
at 0x000001400A0CE4A8>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed',)'
: /simple/numpy/
Retrying (Retry(total=3, connect=None, read=None, redirect=None)) after connection broken by 
:
:

Could not find a version that satisfies the requirement numpy (from versions: )
No matching distribution found for numpy

如何解决此安装问题?谢谢你。

编辑:

这有效:

Python –m pip install numpy --proxy http://MyCompanyProxy:Port/ 

标签: pythonpython-3.xpandasnumpyanaconda

解决方案


推荐阅读