Adds ordered_pip script back in.

The pandas dependency on numpy was causing pandas installation to fail.
Reviving the ordered_pip script in since it helps explicitly install
numpy before pandas.
This commit is contained in:
Eddie Hebert
2012-10-05 14:58:38 -04:00
parent fd2d66f53e
commit 013ab86321
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash -e
a=0
while read line
do
if [[ -n "$line" && "$line" != \#* ]] ; then
pip install $line
fi
((a = a + 1))
done < $1
echo "$0: Final package count is $a";