python   install cx_Oracle

1.安装python

linux 自带安装了python2.6.6

2.安装easy_install

按照官网说明,无法安装

[[email protected] backup]# wget https://bootstrap.pypa.io/ez_setup.py -O - | python

--2014-09-05 16:59:01--  https://bootstrap.pypa.io/ez_setup.py

正在解析主机 bootstrap.pypa.io... 103.245.222.175

正在连接 bootstrap.pypa.io|103.245.222.175|:443... 已连接。

错误: 证书通用名 “*.c.ssl.fastly.net” 与所要求的主机名 “bootstrap.pypa.io” 不符。

要以不安全的方式连接至 bootstrap.pypa.io,使用‘--no-check-certificate’。

依照提示 用 --no-check-certificate 下载ez_setup.py

[[email protected] backup]# wget https://bootstrap.pypa.io/ez_setup.py --no-check-certificate

然后 python ez_setup.py 安装

3. 安装cx_Oracle

[[email protected] backup]# easy_install cx_Oracle

Searching for cx-Oracle

Reading https://pypi.python.org/simple/cx_Oracle/

Reading http://cx-oracle.sourceforge.net

Reading http://starship.python.net/crew/atuining

Best match: cx-Oracle 5.1.3

Downloading https://pypi.python.org/packages/source/c/cx_Oracle/cx_Oracle-5.1.3.tar.gz#md5=cd6ff16559cbc9c20087ec812c7092ab

Processing cx_Oracle-5.1.3.tar.gz

Writing /tmp/easy_install-qNEdPX/cx_Oracle-5.1.3/setup.cfg

Running cx_Oracle-5.1.3/setup.py -q bdist_egg --dist-dir /tmp/easy_install-qNEdPX/cx_Oracle-5.1.3/egg-dist-tmp-7rg1rD

error: cannot locate an Oracle software installation

依照提示,设定好 oracle相关环境

export ORACLE_HOME=/oracle/oracle/product/11.2.3

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME/lib

时间: 2025-01-04 18:27:07

python   install cx_Oracle的相关文章

Ubuntu12.10下Python(cx_Oracle)访问Oracle解决方案

第一步:下载安装cx_Oracle 下载地址:http://sourceforge.net/projects/cx-oracle/files/5.1.2/,下载cx_Oracle的rmp安装文件,注意下载版本最好和Oracle.Python环境保持一致,我当前的环境是Oracle 11g和Python2.7,因此下载的是cx_Oracle-5.1.2-11g-py27-1.x86_64.rpm. 不需按RPM方式去安装,直接解压从中取出cx_Oracle.so文件(只需要这个),复制到Pytho

install cx_Oracle on Linux

step 1 : install oracle client library url: http://www.oracle.com/technetwork/topics/linuxsoft-082809.html or search:  instant clients download for Linux x86 download:    instantclient-basic-linux-version.zip   # choose your version !!!! instantclien

python使用cx_oracle模块连接oracle数据库

软件版本:我用的是python3.7,数据库是oracle12c,cx-oracle7.0 首先安装cx-oracle7.0模块,可以使用pip安装,win+r打开运行,输入cmd,启动命令提示符,在命令提示符里输入pip install cx_Oracle 安装完成后在python交互界面输入import cx_Oracle,结果如下图,即说明安装成功. 下面就是程序的代码了: 1 import cx_Oracle #导入模块 2 3 conn=cx_Oracle.connect("c##sc

python install lxml on ubuntu12.04

apt-get build-dep python-lxml pip install lxml python install lxml on ubuntu12.04

python用cx_Oracle连接数据库,出现错误cx_Oracle.DatabaseError: DPI-1047: Cannot locate a 64-bit Oracle Client library的解决办法

python连接oracle数据,用cx_oracle连接数据库,报了标题中的错误,百度后大概定位原因是因为python,cx_oracle和oracle客户端的位数不一致. 我电脑操作系统的位数是64位 python的版本信息如下: oracle客户端为: instantclient_11_2是32位的客户端 oracle服务端版本信息为: 发现报错的原因: instantclient版本为32位,需更换成64位. 解决步骤: 1. 重新下载 instantclient 64位, 下载链接:h

python 安装cx_Oracle模块

想访问远程Oracle数据库,本地又不想安装几百兆的Oracle Client(也木有root权限),安装python的cx_Oralce 模块需要依赖Oracle Instant Client 代替完整的Oracle Client. Oracle Instant Client 下载:http://www.oracle.com/technetwork/topics/linuxx86-64soft-092277.html 下载: instantclient-basic-linux.x64-11.2

Python 安装 cx_Oracle

说明: 本文档内容基于Python 2.7.8版本进行操作. 一.下载cx_Oracle 下载地址: https://pypi.python.org/pypi/cx_Oracle/5.1.3 二.下载Oracle客户端驱动(Oracle Instant Client Basic) 下载地址: http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html 三.Windows下载及安装 3.1

Python使用cx_Oracle模块连接操作Oracle数据库

1. 简介 cx_Oracle 是一个用来连接并操作 Oracle 数据库的 Python 扩展模块, 支持包括 Oracle 9.2 10.2 以及 11.1 等版本 2.安装 最后是去官网http://cx-oracle.sourceforge.net/上下载安装,我自己通过pip和easy install安装都失败了,我是在win8.1的环境下安装的 3.使用 使用就很简单,以下为代码示例 #!/usr/bin/env python #-*- coding:utf-8 -*- import

Python安装cx_Oracle模块遇到的问题(32bit)

环境: win7 32位系统 Python3.6 (32bit) 安装模块: cx_Oracle模块下载(下载地址:https://www.lfd.uci.edu/~gohlke/pythonlibs/#cx_oracle) 如是在网站上下载,切记需下载和python版本对应的.因为我之前在64位系统安装时,一直用的是cx_Oracle-5.3+oci12c-cp36-cp36m-win_amd64.whl此文件,故此次安装时就下载了对应32位系统的cx_Oracle?5.3+oci12c?cp