Compiling cx_Oracle and LD_LIBRARY_PATH
I can compile and install cx_Oracle fine by following the manta:
export ORACLE_HOME=...
python setup.py install
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
python
>>> import cx_Oracle
My issue is the LD_LIBRARY_PATH. Is there a way to compile cx_Oracle,
or any Python extension for that matter so that it's not required to
set LD_LIBRARY_PATH? Is there a way I can make distutils do this for
me?
Thanks,
Brian Cole
.
Relevant Pages
- Re: Whats so funny? WAS Re: rotor replacement
... It also is a matter of code size, ... > separate module, then we wouldn't need this discussion. ... people who want an AES module for Python could get one ... Maybe Bryan Mongeau will contribute this code to Python some day. ... (comp.lang.python) - Re: Defaultdict and speed
... t = clock() ... With Python it's usually difficult to tell if some performance ... most other programs it doesn't matter. ... the performance tweaks I may invent in the future too. ... (comp.lang.python) - Re: Python -- (just) a successful experiment?
... No matter how much you include, ... but Package Y is much better at doing foo than ... > massive installer. ... > iteration of MacEnthon, at least, is going to be based on Python eggs ... (comp.lang.python) - Re: How about adding rational fraction to Python?
... "Natural" is a polemical term no ... matter who is using it in this argument, ... like implicit/automatic conversions from one type to another. ... talking about a philosophical opposition to Python 3 that goes ... (comp.lang.python) - Re: defining the behavior of zip(it, it) (WAS: Converting a flat list...)
... Yes, order does matter. ... Anyone familiar with programming (including Python ... to intentionally restrict the audience of my post when there ... (comp.lang.python) |
|