matplotlib之__main__:1: UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, s

Posted elitphil

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matplotlib之__main__:1: UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, s相关的知识,希望对你有一定的参考价值。

如果遇到问题:

__main__:1: UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure.

 

解决方案:

在程序中增加一条语句:

import matplotlib

matplotlib.use(‘TkAgg‘) (增加这条语句)

以上是关于matplotlib之__main__:1: UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, s的主要内容,如果未能解决你的问题,请参考以下文章

以最简单的方式在 Matplotlib 中的 PyPlot 中添加图例

Matplotlib基本图形之条形图

Matplotlib基本图形之直方图

Python----基础语法之if __name__ == 'main': 的作用和原理

Matplotlib基本图形之饼状图

Python学习手册之__main__,常用第三方模块和打包发布