ML小学期论文复现一些报错的处理

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

.首先去看一下电脑中有没有Pillow

pip install Pillow

然后我们去看一下pillow的版本信息

pip show Pillow

已经安装好了pillow,可能是因为其他问题导致的错误,

pip uninstall Pillow

然后接着就是重新安装Pillow

pip install Pillow

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

matplotlib版本过高可以重新安装低版本的

pip uninstall matplotlib       
pip install matplotlib==3.3.1

ps:如果没删干净,直接按路径去找然后删除文件

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

重新装scipy

你可能感兴趣的:(python,matplotlib,开发语言)