天使与魔鬼 发表于 2018-9-27 09:50:42

error: command 'gcc' failed with exit status 1

我正在尝试在一个新的virtualenv中安装matplotlib。
pip install matplotlib
或者
pip install http://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.1.0/matplotlib-1.1.0.tar.gz
我得到一个错误
building 'matplotlib._png' extension

gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -fPIC -DPY_ARRAY_UNIQUE_SYMBOL=MPL_ARRAY_API -DPYCXX_ISO_CPP_LIB=1 -I/usr/local/include -I/usr/include -I. -I/home/sam/django-projects/datazone/local/lib/python2.7/site-packages/numpy/core/include -I. -I/usr/include/python2.7 -c src/_png.cpp -o build/temp.linux-x86_64-2.7/src/_png.o

src/_png.cpp:10:20: fatal error: png.h: No such file or directory

compilation terminated.

error: command 'gcc' failed with exit status 1

有人知道发生了什么吗?

此间少年 发表于 2018-9-27 09:52:17

构建Matplotlib需要libpng(以及freetype),它不是python库,所以pip不负责安装它(或freetype)。
你需要按照libpng-devel和freetype-devel(或任何与您的操作系统等价的东西)的方式安装一些东西。
参见matplotlib的安装要求/说明。

马猴烧酒 发表于 2018-9-27 09:53:42

要生成png格式的图形,需要安装以下依赖包
sudo apt-get install libpng-dev
sudo apt-get install libfreetype6-dev
sudo apt-get install libpng12-0

污妖王 发表于 2018-9-27 09:55:06

这个错误只在没有安装pkg-config的情况下发生;
sudo apt-get install pkg-config

他改变了中国 发表于 2018-9-27 09:55:55

在Amazon EC2上,我需要做的是:
sudo yum install freetype-devel
sudo yum install libpng-devel
sudo pip install matplotlib

上条把妹之手 发表于 2018-9-27 09:57:23

在OSX上,
只有在运行
brew install freetype
之后,
我才能使用下面命令安装成功
pip install matplotlib==1.4.0

蛋蛋超人 发表于 2018-9-27 09:58:22

在windows下
python -m pip install -U pip setuptools
python -m pip install matplotlib

I_Like_AI 发表于 2018-9-27 09:59:37

ubuntu下
sudo apt-get install libpng-dev libjpeg8-dev libfreetype6-dev

黑崎一护 发表于 2018-9-27 10:00:40

以上这些答案对我在Mint的工作都不起作用,所以使用了
sudo apt-get install build-essential g++
起作用

强人锁男 发表于 2018-9-27 10:07:13

如果在MacOSx上
xcode-select --install
页: [1] 2
查看完整版本: error: command 'gcc' failed with exit status 1