天天看点

ubuntu下安装pillow python 疑难杂症

参看ubuntu发行版本信息

lsb_release -a

No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu  LTS
Release:    
Codename:   trusty
           

工作中常用的centos,移植到ubuntu上面各种问题,简直抓狂,安装个pillow也是各种报错。

先把这些库装上吧,

sudo apt-get install libjpeg8-dev
sudo apt-get install libpng12-dev
sudo apt-get install libfreetype6-dev
sudo apt-get install zlib1g-dev
sudo apt-get install libwebp-dev
sudo apt-get install libtiff5-dev
sudo apt-get install libopenjpeg-dev
sudo apt-get install libzip-dev
           

之后试试

pip install pillow

不行的话直接来这个,大约200M 吧,我安装的时候很快,一分钟多就安装完了,之所以这么大,我看东西很多,屏幕一扫而过,但是我竟然看到了python3.什么的,估计也是个大杂烩。

sudo apt-get build-dep python-imaging

然后试试

pip install pillow

如果还不行,那就直接编译吧

下载地址http://www.pythonware.com/products/pil/index.htm

找到你的版本对应的

tar xvfz Imaging-.tar.gz
cd Imaging-
python setup.py install
           

版本号对应着,不要搞错了。

然后

pip install pillow

其实这样之后还是报错了

error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

抱着侥幸的心里在python 中

from PIL import Image

竟然成功了,那就这样吧,不求甚解了。咋地(摊手)