> Then, when trying to run pygresql, it starts throwing errors about not > being able to 'find' the DLL's. So newbie me copied all the DLL's from > the PostgreSQL\bin directory to the Python\site-packages, to make it > work. Tadaa, working program. Joy. But surely there is a better way of > solving this little issue.. What did I overlook?
The only DLL you need is the libpq.dll. You should either copy it to a location on your Windows PATH such as c:\windows\system32, or add the directory c:\program files\postgresql\8.1\bin to your Windows PATH. It seems the PostgreSQL installer does not do this automatically. I will add this point to the installation instructions.
-- Christoph _______________________________________________ PyGreSQL mailing list [email protected] http://mailman.vex.net/mailman/listinfo/pygresql
