Skip to content

Instantly share code, notes, and snippets.

@trevorc
Created April 5, 2012 06:00
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 trevorc/2308346 to your computer and use it in GitHub Desktop.
Save trevorc/2308346 to your computer and use it in GitHub Desktop.
How To Program ubuntu installer
#!/bin/sh
set -eu
DISTRIBUTE_SETUP=https://raw.github.com/gist/2308340/d2c2899afa9894be579f48a7a6d4193e84a55b6b/distribute_setup.py
sudo -k
which easy_install &> /dev/null || wget -qO- $DISTRIBUTE_SETUP | sudo python
sudo easy_install django
sudo easy_install dotcloud
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment