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
有人知道发生了什么吗? 构建Matplotlib需要libpng(以及freetype),它不是python库,所以pip不负责安装它(或freetype)。
你需要按照libpng-devel和freetype-devel(或任何与您的操作系统等价的东西)的方式安装一些东西。
参见matplotlib的安装要求/说明。 要生成png格式的图形,需要安装以下依赖包
sudo apt-get install libpng-dev
sudo apt-get install libfreetype6-dev
sudo apt-get install libpng12-0 这个错误只在没有安装pkg-config的情况下发生;
sudo apt-get install pkg-config
在Amazon EC2上,我需要做的是:
sudo yum install freetype-devel
sudo yum install libpng-devel
sudo pip install matplotlib
在OSX上,
只有在运行
brew install freetype
之后,
我才能使用下面命令安装成功
pip install matplotlib==1.4.0 在windows下
python -m pip install -U pip setuptools
python -m pip install matplotlib
ubuntu下
sudo apt-get install libpng-dev libjpeg8-dev libfreetype6-dev 以上这些答案对我在Mint的工作都不起作用,所以使用了
sudo apt-get install build-essential g++
起作用 如果在MacOSx上
xcode-select --install
页:
[1]
2