Skip to content

Instantly share code, notes, and snippets.

@skabber
Created March 30, 2009 05:19
Show Gist options
  • Save skabber/87646 to your computer and use it in GitHub Desktop.
Save skabber/87646 to your computer and use it in GitHub Desktop.
# install virtualenv virtualenvwrapper into the global python path
easy_install virtualenv
easy_install virtualenvwrapper
# add these 2 lines to you bash_rc file
export WORKON_HOME=$HOME/.virtualenvs
source $HOME/bin/virtualenvwrapper_bashrc
mkdir $HOME/.virtualenvs
# create the pinax virtualenv
mkvirtualenv pinax
cdvirtualenv
# install pip
easy_install pip
# install Pinax and it's requirements
pip install -e git+git://github.com/pinax/pinax.git#egg=Pinax
pip install -r src/pinax/requirements/external_apps.txt
# install Django
pip install django
# create the database and start the server
cd src/pinax/pinax/projects/complete_project
python manage.py syncdb
python manage.py runserver
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment