ImportError: DLL load failed while importing _path: 找不到指定的模块

ImportError: DLL load failed while importing _path: 找不到指定的模块

运行程序(包含import matplotlib)报错

运行环境:Windows 10、VS Code 、Python 3.9.0

一共找到两种解决方法,我使用第2种方法才解决了问题,文末附了参考链接,所有命令在VS Code终端输入即可

解决方法1

 报错原因:这个问题,是由于 matplotlib库或者其依赖库(如numpy)安装不成功,不完成, 或者

matplotlib与其依赖的库(如numpy)的版本不兼容导致的。

1.将使用的python环境下的matplotlib 移除(卸载)

pip uninstall numpy 
pip uninstall matplotlib

2.检查是否成功卸载

pip list

找不到numpy和matplotlib则卸载成功

3.重新安装matplotlib。安装过程中,会自动安装其依赖的库,如numpy。

pip install matplotlib

解决方法2

1.卸载numpy和matplotlib

pip uninstall numpy
pip uninstall matplotlib

2.在http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy下载与本机安装的python版本一致numpy

(说明:cp39表示python3.9.x版本、win_amd64表示64位)

ImportError: DLL load failed while importing _path: 找不到指定的模块_第1张图片

3.离线安装whl文件 

pip install <下载好的文件路径+文件名>

 4.安装matplotlib

pip install matplotlib

 5.检查是否安装成功

pip list

报错原因 :import matplotlib.pyplot as plt 中所有依赖库版本满足要求,但还是报错的原因是在线pip install numpy时因为在线下载numpy库中缺少DLL,
在以上加州大学非官方库连接中MKL版本解决了这个问题

参考链接

import matplotlib ImportError: DLL load failed 问题及解决方法_iwtbs-CSDN博客

解决安装python matplotlib包时出现”ImportError: DLL load failed: 找不到指定的程序“ 的问题_lccrun的博客-CSDN博客

Python import matplotlib.pyplot importError: DLLload failed:找不到指定的模块【已解决】 – IT热血青年

你可能感兴趣的:(vscode)