Presently, I'm attempting to configure Django for use on a project, and am encountering a persistent error when I try to run python manage.py syncdb.

File "/x/x/x/x/x/x/base.py", line 23, in ?
    raise ImproperlyConfigured("Error loading psycopg module: %s" % e)
django.core.exceptions.ImproperlyConfigured: Error loading psycopg module: No module named psycopg

The other discussions of a similar problem that I have found both here and on other sites ended up being solved by the user downloading and installing psycopg, but unless I'm missing something critical, I've done that several times. I downloaded the tarball, unpacked it on my server, ran python setup.py build and python setup.py install with a --prefix directing it to my existing Python Path...I can go and navigate to the folder and see the various psycopg files, but for whatever reason, when I try to get my new project to sync up with the database, it cannot find psycopg and, as a result, won't talk to the db.

Notes: hostmonster.com account, have tried multiple release versions of psycopg2.

link|improve this question
This issue has been solved. After installing a current version of Python, the whole process went very smoothly and quickly for me. Thank you, s. zakharov for your assistance. – user968270 Nov 23 '11 at 7:39
feedback

2 Answers

You try to load psycopg, not psycopg2. Make sure that ENGINE is set to django.db.backends.postgresql_psycopg2 in the settings.py of your project:

'ENGINE': 'django.db.backends.postgresql_psycopg2'

May be problem is: 32bit version of Python cannot load a 64bit version of psycopg2.

link|improve this answer
That was one part of the process that worried me: my installation of psycopg creates a new directory called 'lib64' in the primary pythonpath folder, whereas the rest of Django only created a 'bin' and 'lib' folder. I added this 'lib64' to my .bashrc file, and the psycopg2 directory shows up in the list when I run import sys and sys.path. Is there a particular file name I should be looking for that contains the actual psycopg module? I have a psycopg1.py and psycopg1.pyc in the top level of the psycopg2 directory, but reading through them, they appear to be ancillary. – user968270 Nov 23 '11 at 6:27
OK, see my new answer please. – sergzach Nov 23 '11 at 6:28
Okay, for the first time since I hit this problem, I am seeing some change, which is encouraging itself. However, I'm now receiving the same error except it's now failing to find the psycopg2 module. I see a few files with 'psycopg2' in the name, but they're all either in the initial extracted tarball folder or labeled 'test.' – user968270 Nov 23 '11 at 6:35
Is folder psycopg2 in site-packages directory? – sergzach Nov 23 '11 at 6:39
What is your Python? If Python is 64bit have you installed 64bit version of psycopg2 lib? – sergzach Nov 23 '11 at 6:42
show 4 more comments
feedback

I had this problem inside a python virtual environment (virtualenv), copying the library into the site-package of the environment from the system site packages solved the problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.