Pillow/depends
2019-11-01 13:22:56 +02:00
..
diffcover-install.sh Run lint in own job, but don't let it fail build 2018-10-17 22:29:02 +03:00
diffcover-run.sh Run lint in own job, but don't let it fail build 2018-10-17 22:29:02 +03:00
download-and-extract.sh Corrected usage statement 2018-11-26 00:05:57 +11:00
install_extra_test_images.sh Simplified commands 2019-10-28 21:17:32 +11:00
install_imagequant.sh Updated libimagequant to 2.12.5 2019-07-29 19:32:12 +10:00
install_openjpeg.sh Updated openjpeg to 2.3.1 2019-04-15 18:13:34 +10:00
install_raqm_cmake.sh Updated raqm-cmake 2019-05-01 18:00:50 +10:00
install_raqm.sh Updated raqm to 0.7.0 2019-05-28 19:34:43 +10:00
install_webp.sh Updated libwebp to 1.0.3 2019-07-22 19:14:26 +10:00
README.rst Added raqm scripts and install_extra_test_images script [ci skip] 2018-09-29 14:41:52 +10:00
termux.sh Typo fix 2017-08-16 20:21:58 +01:00

Depends
=======

``install_openjpeg.sh``, ``install_webp.sh``, ``install_imagequant.sh``,
``install_raqm.sh`` and  ``install_raqm_cmake.sh`` can be used to download,
build & install non-packaged dependencies; useful for testing with Travis CI.

``install_extra_test_images.sh`` can be used to install additional test images
that are used for Travis CI and AppVeyor.

The other scripts can be used to install all of the dependencies for
the listed operating systems/distros. The ``ubuntu_14.04.sh`` and
``debian_8.2.sh`` scripts have been tested on bare AWS images and will
install all required dependencies for the system Python 2.7 and 3.4
for all of the optional dependencies.  Git may also be required prior
to running the script to actually download Pillow.

e.g.::

  $ sudo apt-get install git
  $ git clone https://github.com/python-pillow/Pillow.git
  $ cd Pillow/depends
  $ ./debian_8.2.sh
  $ cd ..
  $ git checkout [branch or tag]
  $ virtualenv -p /usr/bin/python2.7 ~/vpy27
  $ source ~/vpy27/bin/activate
  $ make install
  $ make test