From 4971d8478e892cc224fbee9fb07c55fb85573261 Mon Sep 17 00:00:00 2001 From: Jonathan Kamens Date: Thu, 4 Apr 2013 11:40:47 -0400 Subject: [PATCH] MAINT: Specify --use-mirrors to pip install --- etc/ordered_pip.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/ordered_pip.sh b/etc/ordered_pip.sh index fc1a210b..e63e069b 100755 --- a/etc/ordered_pip.sh +++ b/etc/ordered_pip.sh @@ -4,7 +4,7 @@ a=0 while read line do if [[ -n "$line" && "$line" != \#* ]] ; then - pip install $line + pip install --use-mirrors $line fi ((a = a + 1)) done < $1