无法导入 numpy 或安装 numpy

Cant import numpy or install numpy

我正在使用 Python 3.8.0

I am trying to import Numpy in Python Shell but got this error: " ModuleNotFoundError: No module named 'numpy' "

So I tried installing numpy in cmd by typing "pip install numpy" but I got this error: "TypeError: 'module' object is not callable"

然后我也尝试在 cmd 中输入 "python -m pip install --user numpy" 但是我得到了这么长的错误 "ERROR: Command errored out with exit status 1 ...."

有什么方法可以得到 numpy 运行

在 windows 安装科学软件包,如 numpy,可能有点棘手,您可以尝试使用 anaconda https://www.anaconda.com/distribution/

,您需要一个C/C++ 编译器并确保Python 找到它。或者,一种更简单的方法是使用预编译的 NumPy 安装 Python。流行的此类选择是:

Python wiki中列出了更多。

据我所知,

None 其中 Python 3.8。