Files
catalyst/etc/ordered_pip.sh
T
Eddie Hebert 013ab86321 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.
2012-10-05 14:58:38 -04:00

12 lines
192 B
Bash
Executable File

#!/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";