Skip to content

Instantly share code, notes, and snippets.

@pelletier
Created January 11, 2011 17:25
Show Gist options
  • Save pelletier/774755 to your computer and use it in GitHub Desktop.
Save pelletier/774755 to your computer and use it in GitHub Desktop.
PIP sucks, this gist saves my day.
for dir in `ls .`
do
if [ -d $dir ]; then
if [ $dir != "." ]; then
if [ $dir != ".." ]; then
echo $dir
cd $dir && python setup.py install && cd ..
fi
fi
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment