码迷,mamicode.com
首页 > 数据库 > 详细

cx_Oracle python模块安装

时间:2015-09-27 21:33:15      阅读:450      评论:0      收藏:0      [点我收藏+]

标签:

1. 需要从oracle网站下载一下两个包

instantclient-basic-linux.x64-11.2.0.4.0.zip

instantclient-sdk-linux.x64-11.2.0.4.0.zip

2. 下载后解压到某目录下,如:/oracle

3. 根据解压后的 BUILD.txt 步骤进行配置:

  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
配置bash_profile

  3.2

    python setup.py build
    python setup.py install

 

3.3如果出现如下错误,则需要安装 python-devel-2.6.6-64.el6.x86_64

技术分享
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’
View Code

 

cx_Oracle python模块安装

标签:

原文地址:http://www.cnblogs.com/yiyuf/p/4842728.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!