Pillow/depends
2018-09-29 14:41:52 +10:00
..
alpine_Dockerfile Fix typo 2017-10-14 15:47:40 +03:00
debian_8.2.sh update depends/* to install raqm 2017-06-21 14:00:14 -07:00
diffcover-install.sh Move travis cruft out of scripts deployable directory 2016-01-31 17:16:54 +00:00
diffcover-run.sh Move travis cruft out of scripts deployable directory 2016-01-31 17:16:54 +00:00
download-and-extract.sh Freebsd's bash is elsewhere, wget necessary, setuptools not found 2017-06-22 13:30:26 +00:00
fedora_23.sh fedora has raqm package 2017-06-21 14:00:15 -07:00
freebsd_10.sh cmake dependency 2017-06-28 21:29:57 +00:00
install_extra_test_images.sh Retry svn checkout on failure up to 3 times 2018-09-20 19:52:56 +10:00
install_imagequant.sh Updated libimagequant to 2.12.1 2018-08-05 08:40:10 +10:00
install_openjpeg.sh Updated openjpeg to 2.3.0 2017-10-05 20:11:31 +11:00
install_raqm_cmake.sh Use the cmake version of raqm 2017-06-28 21:06:38 +00:00
install_raqm.sh Updated raqm to 0.5.0 2018-02-27 20:27:34 +11:00
install_webp.sh Updated libwebp to 1.0.0 2018-04-23 10:27:40 +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
ubuntu_12.04.sh Install libimagequant for Travis build 2016-05-06 17:45:08 +02:00
ubuntu_14.04.sh remove ppa 2017-06-22 08:01:03 -07: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