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-pipGet 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-devInstall Pillow
For Ubuntu 13.10+,
sudo pip3 install Pillowand for 13.04-,
sudo pip-3.2 install Pillow 1