I'm working with a Django app, called DjangoBB. I'm trying to install it on my server, but I'm getting stuck with the messages plugin/app.
This output doesn't make any sense to me...
# pip install django-messages
Requirement already satisfied (use --upgrade to upgrade): django-messages in /usr/local/lib/python2.7/dist-packages
Cleaning up...
# python manage.py runserver
Error: No module named django_messages
I had the same problem with other modules, like django-registration, and django_notifications, but I just popped them into pip
and then went through again and got a new missing dependency. It's stuck here though. Any ideas?
My INSTALLED_APPS:
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.sitemaps',
'django.contrib.admin',
'django.contrib.admindocs',
'django.contrib.humanize',
'registration',
'pagination',
'django_authopenid',
'djangobb_forum',
'haystack',
'django_messages',
)