Psycopg2 Installing, Not Being Read By Python - Os 10.8.4, Python 2.7, Postgresql 9.2
OS 10.8.4, Python 2.7, PostgreSQL 9.2 I've been spending the past 10+ hours trying to get Psycopg2 installed for Django and am now receiving warnings and a failure that Google can'
Solution 1:
It looks to me like the libpq
being linked to at runtime by _psycopg.so
isn't the same as the libpq
that was compiled against.
Check your DYLIB_LIBRARY_PATH
. Also use the install_name_tool
to see whether _psycopg.so
has an @relative
, unqualified or absolute path to libpq.dylib
.
Post a Comment for "Psycopg2 Installing, Not Being Read By Python - Os 10.8.4, Python 2.7, Postgresql 9.2"