Linux搭建python環境中cx_Oracle模組安裝遇到的問題與解決方案

來源:互聯網
上載者:User

標籤:style   http   ar   color   os   使用   sp   for   strong   

安裝或使用cx_Oracle時,需要用到Oracel的連結庫,如libclntsh.so.11.1,否則會有各種各樣的錯誤資訊。

安裝Oracle Instant Client就可得到這個連結庫,避免安裝幾百兆之巨的Oracle Client。

 

軟體:

cx_Oracle的首頁:http://cx-oracle.sourceforge.net/

必需的Oracle連結庫的:

 

常見的錯誤和解決方案:

一、win32二進位安裝

在windows下安裝cx_Oracle-5.0-11g.win32-py2.6.msi之後,匯入時,報DLL載入失敗的錯誤,如下:

IDLE 2.6.1      
>>> import cx_Oracle

Traceback (most recent call last):
  File "<pyshell#0>", line 1, in <module>
    import cx_Oracle
ImportError: DLL load failed: 找不到指定的程式。

 

解決方案

從Oracle網站下載instantclient-basic-win32-11.2.0.4.zip,解壓後,將其中的oci.dll檔案複製到python安裝目錄的Lib/site-packages下,如 C:/Python26/Lib/site-packages

 

二、linux下二進位安裝

在linux_x86_64下,安裝cx_Oracle-5.0.1-11g-py24-1.x86_64.rpm時報錯。

[[email protected] ~]# rpm -ivh cx_Oracle-5.0.1-11g-py24-1.x86_64.rpm 
error: Failed dependencies:
        libclntsh.so.11.1()(64bit) is needed by cx_Oracle-5.0.1-1.x86_64

 

解決方案

從Oracle網站下載basic-11.2.0.4.0-linux-x86_64.zip到/opt目錄並解壓,會看到libclntsh.so.11.1在/opt/instantclient_11_2目錄中

 

設定環境變數

vi /root/.bash_profile

增加如下兩行:

export ORACLE_HOME=/opt/oracle/instantclient_11_2
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME
運行source /root/.bash_profile使改動生效

 

建立此連結庫的符號連結

cd $ORACLE_HOME

ln -s libclntsh.so.11.1 libclntsh.so

 

重新安裝cx_Oracle

注意加--nodeps參數,否則還會報上述錯誤

[[email protected] ~]# rpm -ivh --nodeps cx_Oracle-5.0.1-11g-py24-1.x86_64.rpm 

 

Linux搭建python環境中cx_Oracle模組安裝遇到的問題與解決方案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.