当前位置:网站首页>ImportError: Unable to import required dependencies: numpy

ImportError: Unable to import required dependencies: numpy

2022-08-10 01:23:00 切糕师学AI

报错信息:

ImportError: Unable to import required dependencies:
numpy:

IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!

Importing the numpy C-extensions failed. This error can happen for
many reasons, often due to issues with your setup or how NumPy was
installed.

We have compiled some common reasons and troubleshooting tips at:

https://numpy.org/devdocs/user/troubleshooting-importerror.html

Please note and check the following:

* The Python version is: Python3.8 from "E:\ProgramData\Anaconda3\python.exe"
* The NumPy version is: "1.19.2"

and make sure that they are the versions you expect.
Please carefully study the documentation linked above for further help.

Original error was: DLL load failed while importing _multiarray_umath: 找不到指定的模块。

报错提示其实很明显了:

The Python version is Python3.8
The Numpy version is 1.19.1

python 和 numpy 的版本不匹配。

报错原因分析:

anaconda自己安的numpy是1.19,python是3.8。两个版本不匹配,3.8应该对应1.18.2。

所以解决方案是卸载1.10安装1.18.2

解决方案:

  1. 打开Anaconda Prompt的命令行窗口
  2. 输入 pip uninstall numpy。 卸载 numpy 1.19
  3. pip install numpy==1.18.2。 安装numpy 1.18.2
  4. 成功后关闭Anaconda Prompt的命令行窗口再重新打开即可

原网站

版权声明
本文为[切糕师学AI]所创,转载请带上原文链接,感谢
https://blog.csdn.net/guigenyi/article/details/126248488