PyCharm使用matplotlib报MatplotlibDeprecationWarning问题解决办法
问题描述:
这个错误全部显示为:MatplotlibDeprecationWarning: Support for FigureCanvases without a required_interactive_framework attribute was deprecated in Matplotlib 3.6 and will be removed two minor releases later.
报错截图如下所示:
代码示例:
import matplotlib.pyplot as plt import numpy as np x = np.arange(0, 10, 0.1) y = np.sin(x) plt.plot(x, y) plt.show() plt.plot(x, y, ‘r', label=‘sin(x)') plt.xlabel(‘x') plt.ylabel(‘y') plt.title(‘Sin Wave') plt.legend() plt.show()
原因定位:
使用了过高版本的matplotlib库
查看matplotlib库版本信息
问题解决
安装低版本matplotlib即可
查看与当前matplotlib版本是否匹配当前python环境,可参考这个网址https://pypi.org/project/matplotlib/3.2.0/#history
应该安装该版本:
卸载不匹配的版本:
安装时matplotlib版本
问题验证:
重新运行:
安装合适的低版本matplotlib,问题就解决了
总结
到此这篇关于PyCharm使用matplotlib报MatplotlibDeprecationWarning问题解决办法的文章就介绍到这了,更多相关matplotlib报MatplotlibDeprecationWarning内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
解决python3在anaconda下安装caffe失败的问题
下面小编就为大家带来一篇解决python3在anaconda下安装caffe失败的问题。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧2017-06-06
最新评论