Created
January 15, 2012 19:14
-
-
Save slor/1616881 to your computer and use it in GitHub Desktop.
Mint 12 installs for Django app on Heroku Cedar
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Installs the prerequisites to set up a Django app on Heroku Cedar [2]. | |
apt-get install python-setuptools | |
apt-get install python-dev | |
easy_install pip | |
pip install virtualenvwrapper | |
apt-get install curl | |
apt-get install postgresql | |
sudo apt-get install postgresql-server-dev-9.1 | |
# 1 - http://www.linuxmint.com/edition.php?id=94 | |
# 2 - http://devcenter.heroku.com/articles/django |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment