Re: [cx-oracle-users] More cx_Oracle under cygwin python woes
Brought to you by:
atuining
From: Steinmann D. <Dan...@co...> - 2006-09-20 08:37:45
|
On Tuesday, September 19, 2006 10:47 PM, Laurelin of Middle Earth wrote: > Does anybody have "recent information" about how to get > whatever-it-is- that-is-needed-in-the-simplest-way so that I have the > OCI "stuff" needed by cx_Oracle so that I can build it myself? =20 1. Download OracleXE: $ echo $ORACLE_HOME=20 c:/programs/oraclexe/app/oracle/product/10.2.0/server 2. Install cygwin version of gcc and python: $ gcc --version gcc (GCC) 3.4.4 (cygming special) (gdc 0.12, using dmd 0.125) Copyright (C) 2004 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. $ python Python 2.4.3 (#1, May 18 2006, 07:40:45)=20 [GCC 3.3.3 (cygwin special)] on cygwin Type "help", "copyright", "credits" or "license" for more information. >>>=20 3. Download cx_Oracle-4.2 and build/install it: $ python setup.py build $ python setup.py install Done!=20 It works out of the box for me. Daniel |