使用python自带的绘图模块画图时,出现了这个错误:AttributeError: module 'backend_interagg' has no attribute 'FigureCanvas'
问题解决
在文件开头的地方加上这样两行代码:
import matplotlib
matplotlib.use('TkAgg')
这样就能够解决上面提到的问题啦~~~
效果展示一下:
使用python自带的绘图模块画图时,出现了这个错误:AttributeError: module 'backend_interagg' has no attribute 'FigureCanvas'
在文件开头的地方加上这样两行代码:
import matplotlib
matplotlib.use('TkAgg')
这样就能够解决上面提到的问题啦~~~
效果展示一下: