From dc15938ff3548f4e1fcca5b501e6dbdb1efea0e2 Mon Sep 17 00:00:00 2001 From: ozmium Date: Mon, 3 Jul 2017 14:16:29 +0100 Subject: [PATCH] Use "sudo pip install Pillow" to allow installation The command "pip install Pillow" will not work, and will just produce "Permission denied" installation error messages. So use "sudo pip install Pillow" instead. Also give link to pip website. --- docs/installation.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index 3ceb0f425..000353b5d 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -24,9 +24,9 @@ Basic Installation The following instructions will install Pillow with support for most common image formats. See :ref:`external-libraries` for a full list of external libraries supported. -Install Pillow with :command:`pip`:: +Install Pillow with :command: `pip `_ :: - $ pip install Pillow + $ sudo pip install Pillow Or use :command:`easy_install` for installing `Python Eggs `_ as :command:`pip` does not support them:: @@ -86,7 +86,7 @@ Many of Pillow's features require external libraries: Once you have installed the prerequisites,run:: - $ pip install Pillow + $ sudo pip install Pillow If the prerequisites are installed in the standard library locations for your machine (e.g. :file:`/usr` or :file:`/usr/local`), no @@ -136,7 +136,7 @@ The easiest way to install external libraries is via `Homebrew Install Pillow with:: - $ pip install Pillow + $ sudo pip install Pillow Windows Installation -------------------- @@ -163,7 +163,7 @@ Python Wheels :: - $ pip install Pillow + $ sudo pip install Pillow If the above does not work, it's likely because we haven't uploaded a wheel for the latest version of Pillow. In that case, try pinning it @@ -171,7 +171,7 @@ to a specific version: :: - $ pip install Pillow==2.6.1 + $ sudo pip install Pillow==2.6.1 FreeBSD Installation --------------------