To run the example application, make sure you have the required packages installed. You can do this using following commands :
mkvirtualenv example
pip install -r example/requirements.txt
This assumes you already have virtualenv
and virtualenvwrapper
installed and configured.
Next, you can setup the django instance using :
python example/manage.py syncdb --noinput
And run it :
python example/manage.py runserver
Good luck!