在 Linux 上安装 matplotlib 可以通过以下步骤顺利进行:
sudo apt update
sudo apt upgrade
sudo apt install python3 python3-pip
pip3 install matplotlib
test_matplotlib.py
的 Python 脚本,其中包含以下内容:import matplotlib.pyplot as plt
x = [0, 1, 2, 3, 4, 5]
y = [0, 1, 4, 9, 16, 25]
plt.plot(x, y)
plt.xlabel("X-Axis")
plt.ylabel("Y-Axis")
plt.title("Matplotlib Test")
plt.show()
保存脚本并在终端中运行:
python3 test_matplotlib.py
如果安装成功,这将显示一个包含绘制图形的窗口。
注意:根据您的 Linux 发行版和 Python 版本,可能需要使用 python
或 python3
命令。另外,如果您遇到权限问题,可以尝试使用 sudo
命令。