matplotlib下载安装过程同之前写的pygame很类似。
Pygame下载安装
python官网
1.搜索matplotlib
直接点进去
查看历史版本,因为新版本可能出现与python不匹配问题。
我选择3.6.3版本,因为我安装的python是3.8,可以匹配版本。同时window操作系统64位,所以选win-amd64
2.下载
下载保存到python安装地址的sit-package即可。不知道的参考我上面的Pygame博客。在文件夹地址输入cmd,使用命令安装即可:
3.检测
win+r打开黑框,输入python,然后import matplotlib.
如果没有出现任何错误消息,就说明你的系统安装好了matplotlib
后记
使用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.plt.plot(squares)
设置里面取消即可:
参考链接:pycharm画图警告