Pillow/depends
Hugo 83ac121f1c Merge pull request #1656 from wiredfool/manifest
Pruning manifest to those items we need
2016-02-01 14:00:48 +02:00
..
debian_8.2.sh Added note that script works with Raspbian. [ci skip] 2015-12-27 18:23:26 +00: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 tkinter, notes 2016-01-04 07:42:03 -08:00
freebsd_10.sh Added freebsd script 2016-01-04 17:08:48 +00:00
install_openjpeg.sh Make OpenJPEG with 4 job slots - ~2.2 times faster (take 2) 2014-08-21 14:50:11 +03:00
install_webp.sh Updated libwebp to 0.5.0 2015-12-25 14:46:00 +11:00
README.rst Typos, tweaks 2015-10-12 08:55:06 -07:00
ubuntu_12.04.sh scripts for ubuntu 12.04 and fedora 23 2016-01-04 07:31:08 -08:00
ubuntu_14.04.sh Typos, tweaks 2015-10-12 08:55:06 -07:00

Depends
=======

``install_openjpeg.sh`` and ``install_webp.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