I've installed psycopg2 with
pip install psycopg2
and it worked just fine. The install output had a couple of warning along the lines of
In file included from ./psycopg/psycopg.h:33:
./psycopg/config.h:71:13: warning: unused function 'Dprintf' [-Wunused-function]
static void Dprintf(const char *fmt, ...) {}
^
1 warning generated.
but in the end it says
Successfully installed psycopg2
and it also appears when I run pip list
.
Now when I try to import it in python I get an error:
$ python
Python 2.7.5 (default, Aug 25 2013, 00:04:04)
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import psycopg2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named psycopg2
Why can't Python import the module if it was successfully installed?
(Python 2.7.5 was installed with Homebrew. psycopg2 was installed with pip.)