csdn上很多解决方法,但是都不管用,有让你加两行代码的,有让改配置文件的,基本都是国外网站的翻版,都不完全对。
一些英文网站还是写得全面,下文链接完美解决方法
“UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure.” when plotting figure with pyplot on Pycharm
首先将代码加几行
import matplotlib
matplotlib.use('TkAgg')
import matplotlib.pyplot as plt
再次运行会发现还是有问题,问题如下
ModuleNotFoundError: No module named 'tkinter'
这时候大部分解决方案就没有后续了,其实还要在程序运行环境中打开终端,安装tkinter
在终端输入
sudo apt-get install python3-tk
再次运行就可以显示图像了