解决Matplotlib 报错问题 RuntimeError: main thread is not in main loop Matplotlib的默认backend是TkAgg,如果改为agg就不会报错,具体原因还不知道。具体做法就是在使用Matplotlib的文件头部增加:import matplotlib.pyplot as plt plt.switch_backend('agg') ... 数据可视化 2024-05-18 47 点赞 0 评论 71 浏览