开始#

安装快速入门#

使用pip安装:

pip install matplotlib

使用conda安装:

conda install matplotlib

安装指南中提供了更多详细信息。

绘制第一个图#

这是一个最小的示例图:

import matplotlib.pyplot as plt
import numpy as np

x = np.linspace(0, 2 * np.pi, 200)
y = np.sin(x)

fig, ax = plt.subplots()
ax.plot(x, y)
plt.show()

源代码png

../../_images/index-1.png

如果绘图未显示,请检查故障排除

下一步去哪里#