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 中添加图例