python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > matplotlib报MatplotlibDeprecationWarning

PyCharm使用matplotlib报MatplotlibDeprecationWarning问题解决办法

作者:krislong

这篇文章主要给大家介绍了关于PyCharm使用matplotlib报MatplotlibDeprecationWarning问题解决的相关资料,主要是 matplotlib版本过高导致的,文中通过图文介绍的非常详细,需要的朋友可以参考下

问题描述:

这个错误全部显示为: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内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文