当前位置:   article > 正文

AttributeError: module ‘backend_interagg‘ has no attribute ‘FigureCanvas‘. Did you mean: ‘FigureCanv_module 'backend_interagg' has no attribute 'figure

module 'backend_interagg' has no attribute 'figurecanvas'. did you mean: 'fi

问题一(基本上还会出问题,直接看问题二)

AttributeError: module 'backend_interagg' has no attribute 'FigureCanvas'. Did you mean: 'FigureCanvasAgg'?
  • 1

这个错误通常涉及到 Matplotlib 的后端设置问题。Matplotlib 后端是控制图形渲染的引擎,可以尝试更改后端来解决这个问题。

import matplotlib
matplotlib.use('Agg')  # 选择合适的后端,如Agg

import matplotlib.pyplot as plt
  • 1
  • 2
  • 3
  • 4

在你的代码开头加上这两行代码,尝试用 ‘Agg’ 替换掉 ‘backend_interagg’,看看是否能够解决这个错误。

当你解决完问题一后,大概率还会遇到问题二,请往下看

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/371849?site
推荐阅读
相关标签