Original error was: DLL load failed while importing _multiarray_umath: 找不到指定的模块。
时间: 2023-09-23 19:11:36 浏览: 50
这个错误通常是由于缺少 numpy 库或者 numpy 库版本不兼容所导致的。你可以尝试更新或者重新安装 numpy 库,也可以尝试切换到与你的 Python 版本兼容的 numpy 版本。如果你正在使用 Anaconda,可以尝试使用以下命令更新 numpy:
```
conda update numpy
```
如果使用 pip 安装 numpy,可以尝试使用以下命令重新安装:
```
pip uninstall numpy
pip install numpy
```
相关问题
jupyter notebook Original error was: DLL load failed while importing _multiarray_umath: 找不到指定的模块。
这个错误通常是由于 NumPy 模块没有正确安装或安装版本不兼容所导致的。您可以尝试重新安装 NumPy 模块或者升级到最新版本。
如果您使用的是 Anaconda,可以尝试在 Anaconda Prompt 中使用以下命令重新安装 NumPy:
```
conda install numpy
```
如果您使用的是 pip,可以尝试在命令行中使用以下命令重新安装 NumPy:
```
pip install --upgrade numpy
```
如果以上方法都无法解决问题,您可以尝试卸载并重新安装 Anaconda 或者 Python 环境。
Original error was: DLL load failed while importing _multiarray_umath: 找不到指定的程序
This error message indicates that the program was unable to find a specific DLL file required for importing the multiarray_umath module, which is used for numerical operations in Python. This can occur when the DLL file is missing, corrupted, or not installed in the correct location. To resolve this issue, you may need to reinstall the affected module or library or update your system's PATH environment variable to include the directory where the missing DLL file is located.
阅读全文