chjj / ttystudio

A terminal-to-gif recorder minus the headaches.
Other
3.24k stars 93 forks source link

NPM install failed #5

Closed ern0 closed 9 years ago

ern0 commented 9 years ago

I am using latest Xubuntu, and I could not install the Node package. Console output is:

$ sudo npm -g install ttystudio
> pty.js@0.2.8 install /usr/local/lib/node_modules/ttystudio/node_modules/pty.js
> node-gyp rebuild

/bin/sh: node: command 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:344: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.19.0-22-generic
gyp ERR! command "nodejs" "/usr/bin/node-gyp" "rebuild"
gyp ERR! cwd /usr/local/lib/node_modules/ttystudio/node_modules/pty.js
gyp ERR! node -v v0.10.25
gyp ERR! node-gyp -v v0.12.2
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! pty.js@0.2.8 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the pty.js@0.2.8 install script.
npm ERR! This is most likely a problem with the pty.js 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 pty.js
npm ERR! There is likely additional logging output above.

npm ERR! System Linux 3.19.0-22-generic
npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "-g" "install" "ttystudio"
npm ERR! cwd /home/ern0
npm ERR! node -v v0.10.25
npm ERR! npm -v 1.4.21
npm ERR! code ELIFECYCLE
npm ERR! 
npm ERR! Additional logging details can be found in:
npm ERR!     /home/ern0/npm-debug.log
npm ERR! not ok code 0
chjj commented 9 years ago

/bin/sh: node: command not found

Are you sure node is in your PATH?

scovetta commented 9 years ago

Ubuntu (and Xubuntu) packages NodeJS as 'nodejs', not 'node' (as 'node' conflicts with another package). As per http://stackoverflow.com/questions/21168141/can-not-install-packages-using-node-package-manager-in-ubuntu, you can either install nodejs-legacy or symlink /usr/bin/node to /usr/bin/nodejs.

ern0 commented 9 years ago

I've uninstalled node (I don't know what is it) and installed nodejs-legacy - problem solved, thanks, dudes!