ubuntu18.04安装matplotlib软件
时间: 2023-07-03 17:10:19 浏览: 157
要在Ubuntu 18.04上安装Matplotlib,请按照以下步骤操作:
1.打开终端并更新软件包列表:
```
sudo apt-get update
```
2.安装Matplotlib和依赖项:
```
sudo apt-get install python3-matplotlib
```
3.等待安装完成后,您可以验证是否已成功安装Matplotlib。在终端中输入以下命令并按Enter键:
```
python3 -c "import matplotlib; print(matplotlib.__version__)"
```
如果Matplotlib已成功安装,则会显示版本号。
相关问题
ubuntu18.04安装matplotlib
您可以按照以下步骤在Ubuntu 18.04上安装matplotlib:
1. 打开终端并更新软件包列表:
```
sudo apt-get update
```
2. 安装matplotlib:
```
sudo apt-get install python3-matplotlib
```
3. 等待安装完成后,您可以在Python中导入matplotlib并开始使用它:
```
import matplotlib.pyplot as plt
plt.plot([1, 2, 3, 4])
plt.ylabel('some numbers')
plt.show()
```
这将显示一个简单的折线图。
希望这可以帮助您安装matplotlib。
ubuntu18.04安装matplotlib镜像
如果你在 Ubuntu 18.04 上安装 matplotlib 时遇到了下载速度慢的问题,可以尝试使用国内的镜像站来加速下载。
以下是使用清华大学镜像站安装 matplotlib 的步骤:
1.打开终端并输入以下命令,添加清华大学镜像站的源:
```
sudo tee /etc/apt/sources.list.d/tuna.list << EOF
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse
EOF
```
2.更新软件包列表:
```
sudo apt-get update
```
3.安装 matplotlib:
```
sudo apt-get install python3-matplotlib
```
安装完成后,你可以像往常一样在 Python 中导入 matplotlib 并使用它来绘制图形。
阅读全文