首页 > 代码库 > python 安装 cx_Oracle

python 安装 cx_Oracle

源码安装:

     下载地址:   https://pypi.python.org/pypi/cx_Oracle/5.2.1

      安装:1.  tar zxvf cx_Oracle-5.2.1.tar.gz
                2.  cd cx_Oracle-5.2.1
                3.  python3 setup.py install


安装完成后:import cx_Oracle 出现如下报错:

ImportError: libclntsh.so.11.1: cannot open shared object file: No such file or directory

解决方案:

 

 以root用户登录
  1、找到 oracle  lib 位置:
  /u01/app/oracle/product/11.2.0/client_1/lib
  2、在目录  /etc/ld.so.conf.d 下新建  oracle.conf,将上述位置信息写入,并保存:
  /u01/app/oracle/product/11.2.0/client_1/lib
  3、运行  ldconfig  命令
  
  
python 连接oracle后,结果出现乱码问题的解决:

import os
os.environ[‘NLS_LANG‘] = ‘SIMPLIFIED CHINESE_CHINA.UTF8‘


python 安装 cx_Oracle