无法在 Python 2.7 上安装 numpy

问题描述 投票:0回答:1

我正在尝试在 PyCharm 中的 Python 2.7.15 上安装 numpy 库,但收到的错误消息是:

ERROR: Could not find a version that satisfies the requirement numpy (from versions: none)
ERROR: No matching distribution found for numpy
c:\python27\lib\site-packages\pip\_vendor\urllib3\util\ssl_.py:164: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 fro
m configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings
  InsecurePlatformWarning,

有什么线索吗?

python python-2.7
1个回答
0
投票

Python 2.7
已过时,并且其
pip
没有更新 - 在此错误中,安全连接 HTTPS 存在问题,因为 SSL 已过时。

但是,您可以在 PyPi.org 上找到许多模块中的 .whl 文件,下载它们并从本地文件安装。

PyPi.org:numpy

在左侧,您可以看到链接

Download
,其中显示最新版本的所有
.whl

但是还有链接

History
可以显示旧版本,稍后你可以找到“下载旧版本”

numpy 1.16.6

© www.soinside.com 2019 - 2024. All rights reserved.