在银河麒麟的pycharm中出现错误 UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure.
时间: 2023-10-12 11:13:32 浏览: 184
这是因为你在使用 Matplotlib 绘图时没有指定 GUI 后端,导致无法显示图像。你可以通过以下两种方式解决这个问题:
1. 在绘图前添加如下代码来指定使用 GUI 后端:
```
import matplotlib
matplotlib.use('TkAgg')
```
2. 在 PyCharm 的设置中,找到 "Tools -> Python Scientific -> Matplotlib",将 "Backend" 设置为 "Automatic" 或者选择一个你想使用的 GUI 后端,比如 "TkAgg"、"Qt5Agg" 等。
阅读全文