AI智能
改变未来

Matplotlib is currently using agg问题

运行代码时出现以下问题UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure.
在网上找了一些方法,通过这篇博客,我尝试了一下。
第一次是这样

import matplotlibmatplotlib.use(\'QT5Agg\')

结果是不行的,然后我又用了他说的print(matplotlib.get_backend())命令看了下我的终端类型并没有发生改变,都是使用的QT5Agg,我就奇怪了,我中间也没导入什么模块,莫非中间发生了什么变化。
我的解决办法是:
在调用plt.show()的前面添加matplotlib.use(‘QT5Agg’),不要添加的太过靠前,然后就能显示了。

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » Matplotlib is currently using agg问题