在windows里导入python的matplotlib包时,会遇到from matplotlib import ft2font: “ImportError: DLL load failed: The specified procedure could not be found.”的问题。
可能的原因是matplotlib版本过高,使用下面命令安装低版本
pip uninstall matplotlib
pip install matplotlib==3.0.3
在windows里导入python的matplotlib包时,会遇到from matplotlib import ft2font: “ImportError: DLL load failed: The specified procedure could not be found.”的问题。
可能的原因是matplotlib版本过高,使用下面命令安装低版本
pip uninstall matplotlib
pip install matplotlib==3.0.3