2014-06-15 6 views
15

Non riesco a installare Contextify sul mio sistema. Sono in esecuzione Ubuntu 14.04, node.js versione 0.10.25, npm versione 1.3.10, con node-gyp versione 0.10.10Contextify installazione fallita - "node: not found"

Ho provato ad aggiornare, riavviare, installare prima le dipendenze, tutto. Niente lo farà funzionare.

~$ 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 

risposta

40

Ho avuto lo stesso problema. Apparentemente Debian ha ribattezzato il comando node su nodejs che causa il problema. Per me l'installazione di nodejs-legacy ha risolto il problema.

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

Vedere https://github.com/voodootikigod/node-serialport/issues/301 per dettagli.

+4

O semplicemente il nodo di collegamento simbolico al nodo – PitaJ

+0

Abbiamo appena eseguito questo problema oggi e ha avuto a che fare con l'utente che esegue il comando di installazione usando root. Nel tuo esempio precedente, stai eseguendo '** sudo ** npm install -g contextify'. Prova a eseguirlo come il normale utente 'npm install -g contextify'. – slickplaid