Skip to content
hhstore edited this page Jan 11, 2016 · 3 revisions

Welcome to the django-backbone-example wiki!

Install and Run

  • date: 2016.01.11 // add the page.
  • author: hhstore

fix issue:

  • the requirements.txt has a bug. python-dateutil version should be 1.4 or else.
  • python-dateutil==1.4

require:

  • python 2.x (2.7)
  • pip2 install -r requirements.txt

use virtualenv, run server:

# create virtual env
virtualenv --python=python2.7 --no-site-packages ./py2env


# activate:
source ./py2env/bin/activate 


# pip install:
pip2 install -r requirements.txt


# run server:
python2 manage.py syncdb --noinput 
python2 manage.py runserver 
Clone this wiki locally