Skip to content

Instantly share code, notes, and snippets.

@timcash
Created June 11, 2013 02:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timcash/5754057 to your computer and use it in GitHub Desktop.
Save timcash/5754057 to your computer and use it in GitHub Desktop.
#!/bin/bash
GAEPATH="$HOME/google_appengine"
PYYAMLPATH="$HOME/pyyaml"
if [ ! -d "$GAEPATH" ]; then
curl -O https://googleappengine.googlecode.com/files/google_appengine_1.8.0.zip
unzip -q -d $HOME google_appengine_1.8.0.zip
else
echo "already installed app engine"
fi
if [ ! -d "$PYYAMLPATH" ]; then
mkdir $HOME/pyyaml
pip install -t $HOME/pyyaml pyyaml
else
echo "already installed pyyaml"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment