I'm just starting out with django trying to use an external app. I've downloaded the app and installed it:
sudo setup.py install
...
Adding django-nested-inlines 0.1 to easy-install.pth file
Installed /Applications/djangostack-1.4.7-0/python/lib/python2.7/site-packages/django_nested_inlines-0.1-py2.7.egg
I also followed the app tutorial and included the app in the settings file:
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
#'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
# Uncomment the next line to enable the admin:
'nested_inlines',
'django.contrib.admin',
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
'polls',
)
But when I try to run the server again I get:
bash-3.2$ python manage.py runserver
Error: No module named nested-inlines
What's wrong here?
EDIT:
I didn't install using pip rather downloaded it. django is installed using Bitnami under Mac OS.