2004-10-29 20:15:45 +04:00
|
|
|
Compiling and installing psycopg
|
|
|
|
********************************
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
While psycopg 1.x used autoconf for its build process psycopg 2 switched to
|
|
|
|
the more pythoning setup.py. Currently both psycopg's author and distutils
|
|
|
|
have some limitations so the file setup.cfg is almost unused and most build
|
2005-05-26 11:34:27 +04:00
|
|
|
options are hidden in setup.py. Before building psycopg look at setup.cfg file
|
|
|
|
and change any settings to follow your system (or taste); then:
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
python setup.py build
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
to build in the local directory; and:
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2004-10-29 20:15:45 +04:00
|
|
|
python setup.py install
|
|
|
|
|
|
|
|
to install system-wide.
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2005-04-10 07:05:39 +04:00
|
|
|
|
2005-11-20 07:54:33 +03:00
|
|
|
Using setuptools and EasyInstall
|
|
|
|
================================
|
|
|
|
|
|
|
|
If setuptools are installed on your system you can easily create an egg for
|
|
|
|
psycopg and install it. Download the source distribution (if you're reading
|
|
|
|
this file you probably already have) and then edit setup.cfg to your taste
|
|
|
|
and build from the source distribution top-level directory using:
|
|
|
|
|
|
|
|
easy_install .
|
|
|
|
|
|
|
|
|
2005-04-10 07:05:39 +04:00
|
|
|
Compiling under Windows with mingw32
|
2005-11-20 07:54:33 +03:00
|
|
|
====================================
|
2005-04-10 07:05:39 +04:00
|
|
|
|
2006-01-05 19:56:40 +03:00
|
|
|
You can compile psycopg under Windows platform with mingw32
|
|
|
|
(http://www.mingw.org/) compiler. MinGW is also shipped with IDEs such as
|
|
|
|
Dev-C++ (http://www.bloodshed.net/devcpp.html) and Code::Blocks
|
|
|
|
(http://www.codeblocks.org). gcc binaries should be in your PATH.
|
2005-04-10 07:05:39 +04:00
|
|
|
|
2006-01-05 19:56:40 +03:00
|
|
|
You need a PostgreSQL with include and libary files installed. At least v8.0 is required.
|
2005-04-10 07:05:39 +04:00
|
|
|
|
2006-01-05 19:56:40 +03:00
|
|
|
First you need to create a libpython2X.a as described in
|
|
|
|
http://starship.python.net/crew/kernr/mingw32/Notes.html. Then run:
|
2005-04-10 07:05:39 +04:00
|
|
|
|
2006-01-05 19:56:40 +03:00
|
|
|
python setup.py build_ext --compiler=mingw32 install
|