Error installing Pillow on ubuntu 15.10 32 bits

2

The error that throws me is the following:

$ pip install pillow 
Failed building wheel for pillow
...
error: command 'i686-linux-gnu-gcc' failed with exit status 1
...
    
asked by wootsbot 13.04.2016 в 09:16
source

1 answer

1

Before installing Pillow, make sure you have installed the dependencies:

$ sudo apt-get install python-dev python-setuptools
$ sudo apt-get install libtiff5-dev libjpeg8-dev zlib1g-dev libfreetype6-dev liblcms2-dev libwebp-dev tcl8.6-dev tk8.6-dev python-tk

Next, try installing Pillow again in your virtualenv :

$ pip install Pillow

References

answered by 13.04.2016 / 17:55
source