导入matplotlib包报错,找不到指定的模块
程序员文章站
2022-03-26 19:34:10
...
from . import _imaging as core ImportError: DLL load failed: 找不到指定的模块。
在OpenCV或其他地方导入matplotlib包时,报上述错误,解决方案如下:
1、打开cmd,输入
pip uninstall matplotlib
卸载matplotlib包,输入
pip install matplotlib
重新安装包;
2、卸载pillow包,
pip uninstall pillow
重新安装pillow包
pip install pillow
即可解决问题。
推荐阅读
-
安装完torch geometric,import torch_geometric然后报错:OSError: [WinError 127] 找不到指定的模块
-
maven多项目打包报错---子模块相互依赖打包时所遇到的问题:依赖的程序包找不到 package xxx does not exist
-
Python自动发邮件以及打包报错failed to execute script和DLL load failed while importing win32api: 找不到指定的模块
-
使用了自定义的模块的Maven项目打包报错找不到jar包
-
记一次python中使用mitmdump报错找不到指定的包
-
安装完torch geometric,import torch_geometric然后报错:OSError: [WinError 127] 找不到指定的模块
-
从GitHub导入QMUI_Android-master报错:CreateProcess error = 2,系统找不到指定的文件。
-
导入matplotlib包报错,找不到指定的模块
-
maven多项目打包报错---子模块相互依赖打包时所遇到的问题:依赖的程序包找不到 package xxx does not exist
-
python导包出现:ImportError: DLL load failed: 找不到指定的模块问题解决