From b67717d66e68775a9ec5888e9d9df63e8269124a Mon Sep 17 00:00:00 2001 From: Bastian Kleineidam Date: Mon, 10 Feb 2014 22:43:28 +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 a5e1023e6..ccd55f619 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 install --allow-all-external PIL + pip install --allow-external PIL --allow-unverified PIL PIL fi