UserWarning: Matplotlib 1s currently usIng agg,which is a non-gui backend, so cannot show the figure
时间: 2023-06-13 20:05:16 浏览: 154
解决matplotlib库show()方法不显示图片的问题
这个警告信息是由于Matplotlib目前使用的是agg后端,而agg是一个非GUI的后端,因此无法显示图形。如果你想要显示图形,可以将Matplotlib的后端切换为GUI后端,例如Tkinter或Qt。你可以在代码中添加以下行来切换Matplotlib的后端:
```
import matplotlib
matplotlib.use('TkAgg') # 或者使用 'QtAgg'
```
这将使Matplotlib使用Tkinter或Qt后端来显示图形。请注意,这行代码应该在导入Matplotlib之前调用。
阅读全文