无法在 Ubuntu 16.04 中使用 pip 安装 matplotlib

无法在 Ubuntu 16.04 中使用 pip 安装 matplotlib

在 Ubuntu 16.04 中,我可以使用 pip 安装几乎所有 python 包和库,除了 matplotlib。

我使用此命令来安装 matplotlibpip install matplotlib 这会出现错误:Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-z5w80J/matplotlib/

但我在安装任何其他 python 包时都没有注意到这个错误,而且我不知道为什么会出现这个错误。请帮忙,因为我需要使用 matplotlib 库。

答案1

正如这篇文章所述在 StackOverflow 上这是一个“已知错误”。在 Github 上,他们解释说,当freetype-config缺少 setup.py 时,它会崩溃。错误消息的输出看起来有点不同,但似乎可以按照我发布的链接中的说明进行处理。通过输入:

sudo apt-get install libfreetype6-dev libxft-dev

其次是:

sudo pip install matplotlib

相关内容