python - no South database module 'south.db.sqlite3' -
i'm trying run
python manage.py syncdb but i'm getting error:
there no south database module 'south.db.sqlite3' this settings.py
databases = { 'default': { 'engine': 'django.db.backends.sqlite3', 'name': os.path.join(base_dir, 'db.sqlite3'), } } south_database_adapters = { 'default': 'south.db.sqlite3' }
you may able address installing django 1.6 pip install django==1.6.
you may have luck if add
south_database_adapters = { 'default': 'south.db.sqlite3' } if don't work may answer can here : http://answerhub.com/qa/questions/28185/how-do-i-get-syncdb-to-work-im-getting-there-is-no.html
Comments
Post a Comment