2014-06-15 38 views
15

我無法使Contextify安裝在我的系統上。我運行Ubuntu 14.04,node.js版本0.10.25,npm版本1.3.10,節點gyp版本0.10.10Contextify安裝失敗 - 「node:not found」

我試過升級,重新啓動,首先安裝依賴項,一切。沒有什麼會讓它起作用。

~$ sudo npm install -g contextify 
npm http GET https://registry.npmjs.org/contextify 
npm http 304 https://registry.npmjs.org/contextify 
npm http GET https://registry.npmjs.org/bindings 
npm http GET https://registry.npmjs.org/nan 
npm http 304 https://registry.npmjs.org/bindings 
npm http 304 https://registry.npmjs.org/nan 

> [email protected] install /usr/local/lib/node_modules/contextify 
> node-gyp rebuild 

/bin/sh: 1: node: not found 
gyp: Call to 'node -e "require('nan')"' returned exit status 127. while trying to load binding.gyp 
gyp ERR! configure error 
gyp ERR! stack Error: `gyp` failed with exit code: 1 
gyp ERR! stack  at ChildProcess.onCpExit (/usr/share/node-gyp/lib/configure.js:431:16) 
gyp ERR! stack  at ChildProcess.EventEmitter.emit (events.js:98:17) 
gyp ERR! stack  at Process.ChildProcess._handle.onexit (child_process.js:797:12) 
gyp ERR! System Linux 3.13.0-29-generic 
gyp ERR! command "nodejs" "/usr/bin/node-gyp" "rebuild" 
gyp ERR! cwd /usr/local/lib/node_modules/contextify 
gyp ERR! node -v v0.10.25 
gyp ERR! node-gyp -v v0.10.10 
gyp ERR! not ok 
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! weird error 1 
npm ERR! not ok code 0 

回答

40

我有同樣的問題。顯然,Debian已將命令node更名爲nodejs,這導致了該問題。對我來說安裝​​修復了這個問題。

sudo apt-get update && sudo apt-get install nodejs-legacy 

查看https://github.com/voodootikigod/node-serialport/issues/301瞭解詳情。

+4

或者只是將節點symlinking到nodejs – PitaJ

+0

我們今天剛剛遇到了這個問題,它必須與用戶使用root運行安裝命令。在上面的示例中,您正在運行'** sudo ** npm install -g contextify'。嘗試像普通用戶'npm install -g contextify'那樣運行它。 – slickplaid