During setup tonight I got the following error when trying to connect to the postgresql database I’ve installed:
raise ImproperlyConfigured, “Error loading psycopg2 module: %s” % e
ImproperlyConfigured: Error loading psycopg2 module: No module named psycopg2
It’s pretty readily apparent that I needed to install psycopg2 but where do I find it and how do I install it?
http://www.stickpeople.com/projects/python/win-psycopg/index.html

I think you have a typo in your config. The module should be name “postgresql_psycopg2″. I have set this up on Windows machines before and can verify that it does indeed work.
Kevin,
Youi’re correct. My settings.py file has “DATABASE_ENGINE = ‘postgresql_psycopg2′” and it seems to be working fine. Now if only I could get my One-To-Many model working as well…