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包的問題。
感謝您的回答,我直到現在纔看到它。 debian **上的可執行文件是**,稱爲nodejs,因爲有一個名爲node的衝突包。我最終通過用'ln -s/usr/bin/nodejs/usr/bin/node'連接node和nodejs來解決這個問題。 – Sheerforce
不,如果它沒有爲你自動符號鏈接。您必須已經安裝了軟件包節點。 (與Ubuntu相同)因此,卸載軟件包節點,然後重新安裝軟件包nodejs將使其工作。 – Adam