Hi All,
I am very new on the subject. Trying to run a postgresql backend with django. (sqllite3 is said to cause problems)
My google searches do not reveal useful links on how to do it.
I met problems with "pip install psycopg2".
When I try to install the package into my virtualenv in pycharm, it tries to compile the source into binaries, it fails at linking stage, giving errors like:
Creating library build\temp.win32-2.7\Release\psycopg\_psycopg.lib and object build\temp.win32-2.7\Release\psycopg\_psycopg.exp
pqpath.obj : error LNK2019: unresolved external symbol _PQclear referenced in function _pq_raise
connection_int.obj : error LNK2001: unresolved external symbol _PQclear
cursor_type.obj : error LNK2001: unresolved external symbol _PQclear
error_type.obj : error LNK2001: unresolved external symbol _PQclear
pqpath.obj : error LNK2019: unresolved external symbol _PQerrorMessage referenced in function _pq_raise
----
I have also tried to copy the binaries into my virtualenv.
I still get
"Error: No module named psycopg2.extensions" error.
Does anybody have a working solution?
Regards