Created
July 23, 2012 19:46
-
-
Save mcotton/3165763 to your computer and use it in GitHub Desktop.
Setting Django on OSX
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
> sudo curl https://raw.github.com/pypa/pip/master/contrib/get-pip.py | python | |
> sudo pip install Django | |
> git clone <project> | |
> cd <project> | |
> cp local_settings_test.py local_settings.py | |
> export DJANGO_SETTINGS_MODULE=qliqserver.settings | |
> mkdir logs | |
> pip install south | |
> pip install django-piston | |
> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment