Vous devez installer psycopg2
Bibliothèque Python.
Installation
Téléchargez http://initd.org/psycopg/, puis installez-le sous Python PATH
Après le téléchargement, extrayez facilement l'archive tar et :
$ python setup.py install
Ou si vous le souhaitez, installez-le par easy_install ou pip.
$ easy_install psycopg2
$ pip install psycopg2
Configuration
dans les paramètres .py
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'db_name',
'USER': 'db_user',
'PASSWORD': 'db_user_password',
'HOST': '',
'PORT': 'db_port_number',
}
}