I am a newbie to django and I am trying to install django countries and am haveing issues. I Installed from http://pypi.python.org/pypi/django-countries/1.0.1. When I installe
You can install django countries with this command:
sudo pip install django-countries
Then your INSTALLED_APPS should be updated like this:
INSTALLED_APPS = (
'django_admin_bootstrapped.bootstrap3',
...
'django.contrib.staticfiles',
...
'django_countries',
)
(note: no django. prefix, countries spelt correctly, underscore not dash)
BTW I found this command useful when verifying package names:
pip list