Am 04.05.2016 um 20:51 schrieb Magnus Lind Oxlund:
Yes, I'm ‎running PostgreSQL version 9.5.2-1 64-bit.

Does Python find the libpq library? You can check it like this:

import os

for path in os.environ['PATH'].split(';'):
    print(path)
    if 'libpq.dll' in os.listdir(path):
        print("*** libpq found ***")



_______________________________________________
PyGreSQL mailing list
[email protected]
https://mail.vex.net/mailman/listinfo.cgi/pygresql

Reply via email to