[Django]-Django1.4.0:ImportError: No module named base

6👍

The problem is probably because You have no full path for your DB backend. You probably have:

'ENGINE': 'sqlite3',

instead of:

'ENGINE': 'django.db.backends.sqlite3',  
👤slafs

1👍

You must call manage.py from the folder where settings.py is located: ../manage.py shell
(In case using sqlite3)
(And djando 1.4)

Leave a comment