Matplotlib:module backend_interagg has no attribute FigureCanvas

近日,与实验组小伙伴协同调代码,使用matplotlib报错,错误信息如下:

 经检查,报错原因是因为matplotlib版本过高的问题,需要降低matplotlib版本。

解决办法如下:

pip uninstall matplotlib
pip install matplotlib==3.5.3

重装版本之后,代码能够正常运行。
 

你可能感兴趣的:(环境坑,pycharm)