安裝 oracle 後,在 django 項目中鏈接出現問題記錄。python
問題1:pip install cx_Oacle 未出現任何問題,但運行過程出現:django
緣由:鏈接 oracle 的工具 cx_Oracle 安裝不正確或未安裝oracle
解決:本身下載安裝與本身系統匹配的 whl 文件進行安裝,如個人是 python 3.6 +系統 win(64),所以對應版本是:cx_Oracle-6.4.1-cp36-cp36m-win_amd64.whl 工具
下載地址:https://www.lfd.uci.edu/~gohlke/pythonlibs/#cx_oraclespa
安裝: pip install cx_Oracle-6.4.1-cp36-cp36m-win_amd64.whl 3d
問題2:pip install/uninstall cx_Oracle 操做不成功,出現問題以下code
提示:cx_Oracle_******.pyd 文件限制訪問
解決:刪除該文件,再從新安裝便可
PS:cx_Oracle 最好下載 對應whl文件,再自行安裝較好。