2016-02-06 58 views
0

我在安裝NW.js時遇到了一些麻煩。當我運行npm install nw,我得到這些錯誤消息:安裝NW.js

> [email protected] postinstall /root/node_modules/nw 
> node scripts/install.js 

sh: 1: node: not found 
npm WARN This failure might be due to the use of legacy binary "node" 
npm WARN For further explanations, please read 
/usr/share/doc/nodejs/README.Debian 
npm ERR! [email protected] postinstall: `node scripts/install.js` 
npm ERR! Exit status 127 
npm ERR! 
npm ERR! Failed at the [email protected] postinstall script. 
npm ERR! This is most likely a problem with the nw package, 
npm ERR! not with npm itself. 
npm ERR! Tell the author that this fails on your system: 
npm ERR!  node scripts/install.js 
npm ERR! You can get their info via: 
npm ERR!  npm owner ls nw 
npm ERR! There is likely additional logging output above. 

npm ERR! System Linux 4.3.0-kali1-amd64 
npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" "nw" 
npm ERR! cwd /root 
npm ERR! node -v v4.2.6 
npm ERR! npm -v 1.4.21 
npm ERR! code ELIFECYCLE 
npm ERR! 
npm ERR! Additional logging details can be found in: 
npm ERR!  /root/npm-debug.log 
npm ERR! not ok code 0 

我敢肯定,這個問題與第一個部分,在那裏它談到正在安裝約node做。我知道Debian有一個問題,node包實際上已被佔用,因此他們使用nodejs。我不知道如何解決這個問題,我已經試過運行export node=nodejs並將其添加到~/.bashrc。有人對我能做什麼有任何想法嗎?我也有其他npm包的問題。

回答

0
  1. nodejs可執行文件被稱爲節點,而不是nodejs。所以,只需刪除你添加的行。 (export node=nodejs
  2. 如果它仍然不起作用:嘗試通過軟件包管理(apt-get/yum/dnf)重新安裝節點或嘗試從網站(https://nodejs.org/en/download/)重新安裝可執行文件和設置PATH。
+0

感謝您的回答,我直到現在纔看到它。 debian **上的可執行文件是**,稱爲nodejs,因爲有一個名爲node的衝突包。我最終通過用'ln -s/usr/bin/nodejs/usr/bin/node'連接node和nodejs來解決這個問題。 – Sheerforce

+0

不,如果它沒有爲你自動符號鏈接。您必須已經安裝了軟件包節點。 (與Ubuntu相同)因此,卸載軟件包節點,然後重新安裝軟件包nodejs將使其工作。 – Adam