PyCharm可视化界面不出现
设置--> 工具--> Python Scientific --> 取消勾选。这个错误通常是由于matplotlib后端设置不正确或与运行环境不兼容引起的。
·
报错为 AttributeError: module 'backend_interagg' has no attribute 'FigureCanvas'. Did you mean: 'FigureCanvasAgg'?
这个错误通常是由于matplotlib后端设置不正确或与运行环境不兼容引起的。
两个解决办法:
first method:设置matplotlib后端为:交互式后端/Agg后端
#交互后端
import matplotlib.pyplot as plt
plt.switch_backend('TkAgg')
#后端
import matplotlib
matplotlib.use('Agg')
second method:取消勾选在工具窗口显示绘图
设置 --> 工具 --> Python Scientific --> 取消勾选
更多推荐
所有评论(0)