使用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')
這樣就能夠解決上面提到的問題啦~~~
效果展示一下: