Install Pillow for Python 3

What's the best way to install Pillow for Python 3?

1 Answer

I tried using setuptools, but was unsuccessful. But here's another method:

Get pip for Python 3

Open a terminal and enter

sudo apt-get install python3-pip

Get the dependencies

Install dependencies listed in Pillow's docs:

sudo apt-get install python3-dev python3-setuptools
sudo apt-get install libtiff4-dev libjpeg8-dev zlib1g-dev \ libfreetype6-dev liblcms2-dev libwebp-dev tcl8.5-dev tk8.5-dev

Install Pillow

For Ubuntu 13.10+,

sudo pip3 install Pillow

and for 13.04-,

sudo pip-3.2 install Pillow
1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like