From 17a73d1bb93b51ab1801e3eb9ef6b24b039ee152 Mon Sep 17 00:00:00 2001 From: wiredfool Date: Sat, 10 Oct 2015 21:11:17 +0100 Subject: [PATCH] README, rename [ci skip] --- depends/README.rst | 24 ++++++++++++++++++- .../{aws_ubuntu_14.04.sh => ubuntu_14.04.sh} | 0 2 files changed, 23 insertions(+), 1 deletion(-) rename depends/{aws_ubuntu_14.04.sh => ubuntu_14.04.sh} (100%) diff --git a/depends/README.rst b/depends/README.rst index 62c101ecf..21201d015 100644 --- a/depends/README.rst +++ b/depends/README.rst @@ -1,4 +1,26 @@ Depends ======= -Scripts in this directory can be used to download, build & install non-packaged dependencies; useful for testing with Travis CI. +``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`` 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 .. + $ virtualenv -p /usr/bin/python2.7 ~/vpy27 + $ source ~/vpy27/bin/activate + $ make install + $ make test + diff --git a/depends/aws_ubuntu_14.04.sh b/depends/ubuntu_14.04.sh similarity index 100% rename from depends/aws_ubuntu_14.04.sh rename to depends/ubuntu_14.04.sh