簡體   English   中英

npm OracleDB安裝失敗?

[英]npm OracleDB installation failed?

我嘗試使用nodejs連接到Oracle DB,下面是示例代碼段。

oracledb.getConnection(
  {
    user          : "hr",
    password      : "welcome",
    connectString : "localhost/XE"
  },(function(err){
        if(!err) {

          console.log("Database is connected ... \n\n");  
        } else {
             console.log(util.inspect(conString,false,null ));      
          console.log("Error connecting database ... \n\n"+client);  
        }
    }));

我遇到以下錯誤“錯誤:找不到模塊'oracledb'”,並且厭倦了使用npm install oracledb安裝Oracle模塊,但安裝失敗:以下是我得到的錯誤

gyp ERR! configure error
gyp ERR! stack Error: Can't find Python executable "python", you can set the
HON env variable.
gyp ERR! stack     at failNoPython (C:\Program Files\nodejs\node_modules\npm\
e_modules\node-gyp\lib\configure.js:114:14)
gyp ERR! stack     at C:\Program Files\nodejs\node_modules\npm\node_modules\n
-gyp\lib\configure.js:69:11
gyp ERR! stack     at FSReqWrap.oncomplete (evalmachine.<anonymous>:95:15)
gyp ERR! System Windows_NT 6.1.7601
gyp ERR! command "node" "C:\\Program Files\\nodejs\\node_modules\\npm\\node_m
les\\node-gyp\\bin\\node-gyp.js" "rebuild"
gyp ERR! cwd C:\UOC_UCAATM\script_new\node_modules\oracledb
gyp ERR! node -v v0.12.7
gyp ERR! node-gyp -v v2.0.1
gyp ERR! not ok

任何人都可以讓我知道如何解決此問題。

npm ERR! Windows_NT 6.1.7601
npm ERR! argv "C:\\Program Files\\nodejs\\\\node.exe" "C:\\Program Files\\nod
\\node_modules\\npm\\bin\\npm-cli.js" "install" "oracledb"
npm ERR! node v0.12.7
npm ERR! npm  v2.11.3
npm ERR! code ELIFECYCLE

npm ERR! oracledb@1.0.0 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the oracledb@1.0.0 install script 'node-gyp rebuild'.
npm ERR! This is most likely a problem with the oracledb package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node-gyp rebuild
npm ERR! You can get their info via:
npm ERR!     npm owner ls oracledb
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     C:\UOC_UCAATM\script_new\npm-debug.log

我遇到了類似的錯誤,並重新安裝了python 2.7來解決它。 自從我運行64位OS和Oracle XE以來,它一直是64位。

https://www.python.org/downloads/

另外,請務必在安裝時將其添加到您的路徑中。

如有疑問,請閱讀手冊: https : //github.com/oracle/node-oracledb/blob/master/INSTALL.md#instwin正如@ x4rf41所說,您缺少先決條件。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM