溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

python   install cx_Oracle

發(fā)布時(shí)間:2020-10-11 15:58:40 來源:網(wǎng)絡(luò) 閱讀:1112 作者:cshiqin 欄目:關(guān)系型數(shù)據(jù)庫

   1.安裝python 

     linux 自帶安裝了python2.6.6

   2.安裝easy_install

  按照官網(wǎng)說明,無法安裝

[root@server3 backup]# wget https://bootstrap.pypa.io/ez_setup.py -O - | python

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

正在解析主機(jī) bootstrap.pypa.io... 103.245.222.175

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

錯(cuò)誤: 證書通用名 “*.c.ssl.fastly.net” 與所要求的主機(jī)名 “bootstrap.pypa.io” 不符。

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

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

[root@server3 backup]# wget https://bootstrap.pypa.io/ez_setup.py --no-check-certificate

然后 python ez_setup.py 安裝


3. 安裝cx_Oracle

[root@server3 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


依照提示,設(shè)定好 oracle相關(guān)環(huán)境

export ORACLE_HOME=/oracle/oracle/product/11.2.3

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME/lib


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI