ubuntu18.04安装matplotlib镜像
时间: 2023-10-28 09:26:22 浏览: 101
Ubuntu 18.04上安装 phpMyAdmin的详细教程
如果你在 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 并使用它来绘制图形。
阅读全文