mac安裝cx_Oracle 出現cannot locate an Oracle software錯誤解決辦法

來源:互聯網
上載者:User

標籤:blog   http   io   ar   os   sp   for   on   檔案   

前幾個步驟可參考這篇文章:http://www.cs.utexas.edu/~mitra/csSpring2011/cs327/cx_mac.html

 

在進行到sudo python setup.py build 以及install的時候

明明echo $ORACLE_HOME等這些環境變數都設定的,但還是報找不到ORACLE HOME的錯誤,錯誤如下:

userdeMacBook-Pro:cx_Oracle-5.1.2 mac$ sudo python setup.py buildPassword:Traceback (most recent call last):  File "setup.py", line 132, in <module>    raise DistutilsSetupError("cannot locate an Oracle software " distutils.errors.DistutilsSetupError: cannot locate an Oracle software installationuserdeMacBook-Pro:cx_Oracle-5.1.2 mac$ sudo echo $ORACLE_HOME/Users/mac/oracle/instantclient_11_2

 根據提示找到setup.py檔案的132行,寫的是

119 120 # try to determine the Oracle home121 #userOracleHome = os.environ.get("ORACLE_HOME")122 userOracleHome="/Users/mac/oracle/instantclient_11_2"123 if userOracleHome is not None:124     if not CheckOracleHome(userOracleHome):125         messageFormat = "Oracle home (%s) does not refer to an " 126                 "9i, 10g or 11g installation."127         raise DistutilsSetupError(messageFormat % userOracleHome)128 else:129     for path in os.environ["PATH"].split(os.pathsep):130         if CheckOracleHome(path):131             break132     if oracleHome is None:133         raise DistutilsSetupError("cannot locate an Oracle software " 134                 "installation")

 找不到目錄就打出異常,程式退出,我這裡在122行給他這個目錄強行寫死了(確保該目錄的確存在)

然後在執行安裝,程式順利通過。

mac安裝cx_Oracle 出現cannot locate an Oracle software錯誤解決辦法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.