2015-10-09 17:37:40 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
2015-10-10 23:32:25 +03:00
|
|
|
#
|
|
|
|
# Installs all of the dependencies for Pillow for Debian 8.2
|
2015-10-12 18:55:06 +03:00
|
|
|
# for both system Pythons 2.7 and 3.4
|
2015-10-10 23:32:25 +03:00
|
|
|
#
|
2015-12-27 21:23:26 +03:00
|
|
|
# Also works for Raspbian Jessie
|
|
|
|
#
|
2015-10-10 23:32:25 +03:00
|
|
|
|
2015-10-09 17:37:40 +03:00
|
|
|
sudo apt-get -y install python-dev python-setuptools \
|
|
|
|
python3-dev python-virtualenv cmake
|
|
|
|
sudo apt-get -y install libtiff5-dev libjpeg62-turbo-dev zlib1g-dev \
|
|
|
|
libfreetype6-dev liblcms2-dev libwebp-dev tcl8.6-dev tk8.6-dev \
|
2016-12-14 10:07:58 +03:00
|
|
|
python-tk python3-tk libharfbuzz-dev libfribidi-dev
|
2015-10-09 17:37:40 +03:00
|
|
|
|
|
|
|
./install_openjpeg.sh
|
2016-05-06 18:33:07 +03:00
|
|
|
./install_imagequant.sh
|
2016-12-14 10:07:58 +03:00
|
|
|
./install_raqm.sh
|