From fa0b556869f4496ab67d9c6c84e1e7d46f6a9991 Mon Sep 17 00:00:00 2001 From: Bastian Kleineidam Date: Mon, 10 Feb 2014 22:31:51 +0100 Subject: [PATCH] Fix pil install --- scripts/install_pil.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install_pil.sh b/scripts/install_pil.sh index 31e62ab16..a5e1023e6 100755 --- a/scripts/install_pil.sh +++ b/scripts/install_pil.sh @@ -4,5 +4,5 @@ set -e set -u if python -c 'import sys; sys.exit(0 if sys.hexversion<0x03000000 else 1)'; then - pip --allow-all-external install PIL + pip install --allow-all-external PIL fi