为什么 python-pip install matplotlib 不起作用?

为什么 python-pip install matplotlib 不起作用?

我刚刚在电脑上安装了 kubuntu 16.04,并开始安装一些 python 包,但有些包无法安装。我输入的命令是

pip install matplotlib 

但它不起作用。我收到以下错误消息

Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-H6XoGm/matplotlib/

我正在运行 python 2.7.12,并且已更新 python-pip。

答案1

根据评论,您缺少一些matplotlib所需的依赖项,即libpng-devlibfreetype6-dev。通过运行安装这些依赖项:

sudo apt update
sudo apt install libpng-dev libfreetype6-dev

相关内容