Pillow/depends
2017-01-14 19:54:14 +11:00
..
alpine_Dockerfile Removed whitespace from blank lines 2016-09-03 12:23:42 +10:00
debian_8.2.sh
diffcover-install.sh
diffcover-run.sh
download-and-extract.sh Refactor to avoid repeated version number 2016-12-24 19:16:11 +02:00
fedora_23.sh
freebsd_10.sh
install_extra_test_images.sh Additional test images for sun raster files 2016-11-22 07:19:58 -08:00
install_imagequant.sh Changed from pngquant to libimagequant 2017-01-14 19:54:14 +11:00
install_openjpeg.sh Use effective URLs to avoid resolving twice 2016-12-24 22:19:00 +02:00
install_webp.sh Use effective URLs to avoid resolving twice 2016-12-24 22:19:00 +02:00
README.rst Removed whitespace from blank lines 2016-09-03 12:23:42 +10:00
ubuntu_12.04.sh
ubuntu_14.04.sh

Depends
=======

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

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