apt-get install无法在ubuntu 12.04上找到软件包

时间:2014-05-15 01:39:24

标签: python ubuntu python-3.x matplotlib

我正在尝试使用python3在我的ubuntu 12.04系统上安装matplotlib。我已经读过这个包应该在包管理器中可用,但是当我输入

sudo apt-get install python3-matplotlib

我得到了

 E: Unable to locate package python3-matplotlib

我试过

sudo apt-get update
sudo apt-get upgrade

我仍然得到错误。我知道这是一个简单的问题,但我无法理解。

2 个答案:

答案 0 :(得分:0)

由于该包不存在,请参阅:

http://packages.ubuntu.com/search?keywords=matplotlib&searchon=names&suite=precise&section=all

如果你需要在12.04上使用matplotlib + python3,你可能需要从源代码安装它。

答案 1 :(得分:0)

正如tcaswell指出的那样,它似乎并没有被包含在官方的Ubuntu回购中。您可以尝试为其找到外部回购,但我认为您最好从PyPI安装版本。

pip install matplotlib

大多数人更喜欢使用像pip这样的工具安装python依赖项,pip默认使用PyPI repo进行下载。

您也可以从源代码安装,但升级可能会变得棘手。另一方面,对于大多数软件包,PyPI会在它们逐步发布到发行版的回购之前收到更新。