Musisz zainstalować psycopg2
Biblioteka Pythona.
Instalacja
Pobierz http://initd.org/psycopg/, a następnie zainstaluj go w Python PATH
Po pobraniu łatwo rozpakuj archiwum tar i:
$ python setup.py install
Lub, jeśli chcesz, zainstaluj go przez easy_install lub pip.
$ easy_install psycopg2
$ pip install psycopg2
Konfiguracja
w ustawieniach .py
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'db_name',
'USER': 'db_user',
'PASSWORD': 'db_user_password',
'HOST': '',
'PORT': 'db_port_number',
}
}