1👍
✅
After going through the installtion process several times I worked out that because I was using ‘sudo’ it was installing on the server and not inside the virtualenv!
So when you install the app you need to Install it without sudo, otherwise it will install outside of the virtualenv!
0👍
Did you included the application in your settings.py file in the section called
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.admin',
'django.contrib.sites',
'mptt',
'tagging',
'pages', # You have to include it here
)
- [Answer]-CURL XML POST works but not Python Requests – 3rd party Expert Rating API (w/ examples)
- [Answer]-Optimal solution for filtering inherited django models
- [Answer]-Access ckeditor from casperjs test script
- [Answer]-Django QuerysSet for finding related foreign key fields
- [Answer]-When moving from one view to another the latter one is not processed
Source:stackexchange.com