ImportError: DLL load failed: 找不到指定的模块 下载numpy包报错问题解决

我使用的是pycahrm编辑器,python版本是3.9,在写程序时需要用到numpy包。

但我发现使用pip下载

或者pycharm中自带的下载器下载的numpy

ImportError: DLL load failed: 找不到指定的模块 下载numpy包报错问题解决_第1张图片

都会出现如下报错 

ImportError: DLL load failed: 找不到指定的模块 下载numpy包报错问题解决_第2张图片

这时,我注意到numpy包里的提示

ImportError: DLL load failed: 找不到指定的模块 下载numpy包报错问题解决_第3张图片

于是打开所给的链接的网站,发现需要使用conda环境 

Troubleshooting — NumPy v1.25.dev0 Manual

ImportError: DLL load failed: 找不到指定的模块 下载numpy包报错问题解决_第4张图片

 于是下载安装了Anaconda后,根据

Configure a conda virtual environment | PyCharm Documentation

中的教程配置了conda环境,在其中下载了numpy包。

ImportError: DLL load failed: 找不到指定的模块 下载numpy包报错问题解决_第5张图片

运行后没有报错,问题解决。

ImportError: DLL load failed: 找不到指定的模块 下载numpy包报错问题解决_第6张图片

 测试程序如下:

import numpy as np

a = np.ones((2, 4))

print(a)

你可能感兴趣的:(pycharm,ide,python,numpy)