From bfb00173f1dc216dc9e6727b7c5138f8bd13ed13 Mon Sep 17 00:00:00 2001 From: wiredfool Date: Fri, 21 Mar 2014 16:19:51 -0700 Subject: [PATCH] Error recovery for wheel install, #562 --- docs/installation.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/installation.rst b/docs/installation.rst index ff08dee17..565167226 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -172,6 +172,15 @@ Python Wheels $ pip install --use-wheel 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 +to a specific version: + +:: + + $ pip install --use-wheel Pillow==2.3.0 + + Platform support ----------------