From 013ab86321d149d269ae5d23a3b00b6496272a7d Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Fri, 5 Oct 2012 14:58:38 -0400 Subject: [PATCH] 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. --- etc/ordered_pip.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 etc/ordered_pip.sh diff --git a/etc/ordered_pip.sh b/etc/ordered_pip.sh new file mode 100755 index 00000000..fc1a210b --- /dev/null +++ b/etc/ordered_pip.sh @@ -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";