1. 須要從oracle網站下載一下兩個包python
instantclient-basic-linux.x64-11.2.0.4.0.ziplinux
instantclient-sdk-linux.x64-11.2.0.4.0.zipbash
2. 下載後解壓到某目錄下,如:/oracleoracle
3. 根據解壓後的 BUILD.txt 步驟進行配置:ide
3.1 網站
cat .bash_profile # .bash_profile # Get the aliases and functions if [ -f ~/.bashrc ]; then . ~/.bashrc fi # User specific environment and startup programs ORACLE_HOME=/oracle/instantclient_11_2 PATH=$PATH:$HOME/bin:$ORACLE_HOME LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME:$ORACLE_HOME/sdk export LD_LIBRARY_PATH export PATH
3.2ui
python setup.py build
python setup.py installspa
3.3若是出現以下錯誤,則須要安裝 python-devel-2.6.6-64.el6.x86_64code
cx_Oracle.c:6:20: error: Python.h: No such file or directory cx_Oracle.c:7:22: error: datetime.h: No such file or directory cx_Oracle.c:8:26: error: structmember.h: No such file or directory In file included from cx_Oracle.c:142: Buffer.c:13: error: expected specifier-qualifier-list before ‘PyObject’ Buffer.c: In function ‘cxBuffer_Init’: Buffer.c:28: error: ‘udt_Buffer’ has no member named ‘obj’ Buffer.c: In function ‘cxBuffer_Copy’: Buffer.c:44: warning: implicit declaration of function ‘Py_XINCREF’ Buffer.c:44: error: ‘udt_Buffer’ has no member named ‘obj’ Buffer.c:45: error: ‘udt_Buffer’ has no member named ‘obj’ Buffer.c:45: error: ‘udt_Buffer’ has no member named ‘obj’