mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
33 lines
826 B
Bash
Executable File
33 lines
826 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
sudo apt-get update
|
|
sudo apt-get -qq install libfreetype6-dev liblcms2-dev python-tk python-qt4\
|
|
ghostscript libffi-dev libjpeg-turbo-progs libopenjp2-7-dev\
|
|
cmake imagemagick libharfbuzz-dev libfribidi-dev
|
|
|
|
PYTHONOPTIMIZE=0 pip install cffi
|
|
pip install coverage
|
|
pip install olefile
|
|
pip install -U pytest
|
|
pip install -U pytest-cov
|
|
pip install pyroma
|
|
pip install test-image-results
|
|
pip install numpy
|
|
|
|
# docs only on Python 2.7
|
|
if [ "$TRAVIS_PYTHON_VERSION" == "2.7" ]; then pip install -r requirements.txt ; fi
|
|
|
|
# webp
|
|
pushd depends && ./install_webp.sh && popd
|
|
|
|
# libimagequant
|
|
pushd depends && ./install_imagequant.sh && popd
|
|
|
|
# raqm
|
|
pushd depends && ./install_raqm.sh && popd
|
|
|
|
# extra test images
|
|
pushd depends && ./install_extra_test_images.sh && popd
|