On Mon, Feb 9, 2009 at 7:38 AM, rihad <[email protected]> wrote: > This is no surprise, as django always attempts to install databases/py- > psycopg, and not databases/py-psycopg2, since the former is hardcoded > in its port Makefile. Any ideas?
Django's documentation lists all available values for the DATABASE_ENGINE setting: http://docs.djangoproject.com/en/dev/ref/settings/#database-engine It also covers the difference between the two PostgreSQL options, and tells you what to specify to use psycopg version 1 instead of psycopg version 2: http://docs.djangoproject.com/en/dev/topics/install/#database-installation Or, you could install the psycopg2 port and then use that. -- "Bureaucrat Conrad, you are technically correct -- the best kind of correct." --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

