I'm trying to setup an instance of FeinCMS to check it out. I've added the all the modules under INSTALLED APPS
but when I run the command python manage.py syncdb
I get the error Import Error: No module named mptt
. What am I doing wrong?
My settings.py:
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.admin',
'feincms',
'mptt',
'feincms.module.page',
'feincms.module.medialibrary'
)