1. 程式人生 > 其它 >Python 錯誤解決方法

Python 錯誤解決方法

記錄python使用過程中遇到的錯誤和解決方法

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

 import matplotlib.pyplot as plt
  File "C:\Users\user\anaconda3\lib\site-packages\matplotlib\__init__.py", line 174, in <module>
 _check_versions()
  File "C:\Users\user\anaconda3\lib\site-packages\matplotlib\__init__.py", line 159
, in _check_versions from . import ft2font ImportError: DLL load failed while importing ft2font: 找不到指定的模組。

很可能是matplotlib的版本過高:

>pip show matplotlib
Name: matplotlib
Version: 3.3.2
Summary: Python plotting package
Home-page: https://matplotlib.org
Author: John D. Hunter, Michael Droettboom
Author
-email: matplotlib-[email protected] License: PSF Location: c:\users\user\anaconda3\lib\site-packages Requires: certifi, cycler, kiwisolver, numpy, pillow, pyparsing, python-dateutil Required-by: scikit-image, seaborn

我就是裝了3.3.2

解決方法:解除安裝3.3.2版本,重新安裝3.3.1版本的matplotlib

>pip uninstall matplotlib
>pip install
matplotlib==3.3.1

解除安裝與安裝固定版本的包的操作,舉一反三,以後就要會用了