在 Ubuntu 20.04 中为 python 2.7 安装 matplotlib

在 Ubuntu 20.04 中为 python 2.7 安装 matplotlib

我必须运行一些用 python2.7 编写的程序。它们使用库“matplotlib”。在 Ubuntu 20.04 的存储库中没有安装它的候选,并且 python3 的 matplotlib 与我尝试运行的程序不兼容。有没有办法在 Ubuntu 20.04 中安装 python2.7 的 matplotlib?

答案1

安装python-matplotlib在 Ubuntu 20.04 LTS 上,你必须使用以下命令从 18.04 LTS 下载软件包:

cd ~/Downloads
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/p/python-cycler/python-cycler_0.10.0-1_all.deb
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/m/matplotlib/python-matplotlib_2.1.1-2ubuntu3_amd64.deb

sudo apt-get install ./python-matplotlib_2.1.1-2ubuntu3_amd64.deb ./python-cycler_0.10.0-1_all.deb

相关内容