ImportError: cannot import name 'NDArray' from 'numpy.typing' (E:\py\Anaconda\lib\site-packages\numpy\typing\__init__.py)
时间: 2023-11-21 13:05:56 浏览: 1407
VSCode运行Python出现ImportError: Missing required dependencies [‘numpy’]
这个错误通常是由于numpy版本过低导致的。在numpy 1.20.0及更高版本中,NDArray已被移动到numpy中,因此在导入时会出现此错误。解决此问题的方法是升级numpy版本。可以使用以下命令升级numpy:
```shell
pip install --upgrade numpy
```
如果你已经安装了最新版本的numpy,但仍然遇到此错误,请确保你的代码中没有导入名为numpy.typing的模块。如果有,请将其更改为导入numpy中的typing模块。
阅读全文