linux安装matplotlib库
时间: 2023-04-17 09:01:59 浏览: 386
linux下matplotlib-3.0.0库的安装.zip
要在Linux上安装matplotlib库,可以按照以下步骤操作:
1. 打开终端,使用以下命令安装pip:
sudo apt-get install python-pip
2. 安装matplotlib库:
sudo pip install matplotlib
3. 如果你使用的是Python 3,可以使用以下命令安装pip3:
sudo apt-get install python3-pip
4. 然后使用以下命令安装matplotlib库:
sudo pip3 install matplotlib
安装完成后,你就可以在Python中使用matplotlib库了。
阅读全文