无法使用pip通过终端安装numpy

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

我正在尝试安装 python 包

numpy
,但没有成功。我在终端中使用
pip install numpy
,但它返回以下错误消息:

WARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ProtocolError('Connection aborted.', FileNotFoundError(2, 'No such file or directory'))': /simple/numpy/
ERROR: Could not find a version that satisfies the requirement numpy (from versions: none)
ERROR: No matching distribution found for numpy

do已正确安装

pip
,目前正在使用Python 3.11.2。关于这里发生的事情以及如何解决它有什么想法吗?预先感谢!

python numpy installation pip package
1个回答
0
投票

如果您安装了多个版本的 python,您可以看到这一点。尝试下面的命令 python -m pip install numpy

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