在使用pyplot时报错MatplotlibDeprecationWarning

问题描述

在pycharm中使用Matplotlib中的pyplot时,运行代码报错:

MatplotlibDeprecationWarning: Support for FigureCanvases without a required_interactive_framework attribute was deprecated in Matplotlib 3.6 and will be removed two minor releases later.

问题解决

查询资料后,现在将解决方法进行记录。

第一步,点击pycharm菜单栏File——setting选项;

在使用pyplot时报错MatplotlibDeprecationWarning_第1张图片

第二步,在setting窗口中选择Tools——Python Scientific,然后取消勾选show plots in tool window后,点击apply按钮,再点击ok按钮。

在使用pyplot时报错MatplotlibDeprecationWarning_第2张图片

第三步,在代码结尾加上 plt.show()后,代码就可以正常执行且不报错(注:这里的plt是我引用的别名,import matplotlib.pyplot as plt)

在使用pyplot时报错MatplotlibDeprecationWarning_第3张图片

你可能感兴趣的:(问题记录,python)