mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-15 03:46:28 +03:00
16 lines
524 B
Bash
Executable File
16 lines
524 B
Bash
Executable File
#!/bin/sh
|
|
|
|
#
|
|
# Installs all of the dependencies for Pillow for Ubuntu 14.04
|
|
# for both system Pythons 2.7 and 3.4
|
|
#
|
|
sudo add-apt-repository -y ppa:as-bahanta/raqm
|
|
sudo apt-get update
|
|
sudo apt-get -y install python-dev python-setuptools \
|
|
python3-dev python-virtualenv cmake
|
|
sudo apt-get -y install libtiff5-dev libjpeg8-dev zlib1g-dev \
|
|
libfreetype6-dev liblcms2-dev libwebp-dev tcl8.6-dev tk8.6-dev \
|
|
python-tk python3-tk libharfbuzz-dev libfribidi-dev libraqm-dev
|
|
|
|
./install_openjpeg.sh
|
|
./install_imagequant.sh |