ImportError: DLL load failed while importing_ multiarray_ umath: 找不到指定的模块。
时间: 2023-11-16 19:55:34 浏览: 135
python ImportError: DLL load failed while import cv2: 找不到指定的模块。
5星 · 资源好评率100%
这个错误通常是由于 NumPy 模块没有正确安装或者版本不兼容导致的。您可以尝试重新安装 NumPy 模块或者升级到最新版本。如果您使用的是 Anaconda 环境,可以尝试使用以下命令更新 NumPy:
```
conda update numpy
```
如果您使用的是 pip 安装的 NumPy,可以尝试使用以下命令重新安装:
```
pip uninstall numpy
pip install numpy
```
阅读全文