Pillow/depends
2016-06-25 11:35:32 +01:00
..
alpine_Dockerfile imagequant build 2016-05-30 07:18:23 -07:00
debian_8.2.sh Install libimagequant for Travis build 2016-05-06 17:45:08 +02: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
fedora_23.sh libzip != zlib, in depends script as well 2016-04-19 07:56:23 -07:00
freebsd_10.sh Added freebsd script 2016-01-04 17:08:48 +00:00
install_imagequant.sh Use specific version of libimagequant 2016-05-06 19:30:06 +02:00
install_openjpeg.sh changed urls to point to githup pillow-depends repo, fixes travis errors 2016-06-25 11:35:32 +01:00
install_webp.sh changed urls to point to githup pillow-depends repo, fixes travis errors 2016-06-25 11:35:32 +01:00
README.rst Install libimagequant for Travis build 2016-05-06 17:45:08 +02:00
ubuntu_12.04.sh Install libimagequant for Travis build 2016-05-06 17:45:08 +02:00
ubuntu_14.04.sh Install libimagequant for Travis build 2016-05-06 17:45:08 +02:00

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