Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install bower in ubuntu? node is successfully installed

iam new to angular.js. iam trying to install bower in Ubuntu 12.04 by entering following code line. node is successfully installed in local machine.

sudo npm install -g bower

getting below error

npm http GET https://registry.npmjs.org/bower

npm ERR! Error: failed to fetch from registry: bower
npm ERR!     at /usr/share/npm/lib/utils/npm-registry-client/get.js:139:12
npm ERR!     at cb (/usr/share/npm/lib/utils/npm-registry-client/request.js:31:9)
npm ERR!     at Request._callback (/usr/share/npm/lib/utils/npm-registry-client/request.js:136:18)
npm ERR!     at Request.callback (/usr/lib/nodejs/request/main.js:119:22)
npm ERR!     at Request.<anonymous> (/usr/lib/nodejs/request/main.js:212:58)
npm ERR!     at Request.emit (events.js:88:20)
npm ERR!     at ClientRequest.<anonymous> (/usr/lib/nodejs/request/main.js:412:12)
npm ERR!     at ClientRequest.emit (events.js:67:17)
npm ERR!     at HTTPParser.onIncoming (http.js:1261:11)
npm ERR!     at HTTPParser.onHeadersComplete (http.js:102:31)
npm ERR! You may report this log at:
npm ERR!     <http://bugs.debian.org/npm>
npm ERR! or use
npm ERR!     reportbug --attach /home/sameer/npm-debug.log npm
npm ERR! 
npm ERR! System Linux 3.2.0-32-generic
npm ERR! command "node" "/usr/bin/npm" "install" "-g" "bower"
npm ERR! cwd /home/sameer
npm ERR! node -v v0.6.12
npm ERR! npm -v 1.1.4
npm ERR! message failed to fetch from registry: bower
npm ERR! 
npm ERR! Additional logging details can be found in:
npm ERR!     /home/sameer/npm-debug.log
npm not ok

npm-debug.log file contains below code

info it worked if it ends with ok
verbose cli [ 'node', '/usr/bin/npm', 'install', '-g', 'bower' ]
info using [email protected]
info using [email protected]
verbose config file /home/sameer/.npmrc
verbose config file /usr/etc/npmrc
verbose config file /usr/share/npm/npmrc
silly exec /usr/bin/node "/usr/share/npm/bin/npm-get-uid-gid.js" "nobody" 1001
silly spawning [ '/usr/bin/node',
silly spawning   [ '/usr/share/npm/bin/npm-get-uid-gid.js', 'nobody', 1001 ],
silly spawning   null ]
silly output from getuid/gid {"uid":65534,"gid":1001}
silly output from getuid/gid 
verbose cache add [ 'bower', null ]
silly cache add: name, spec, args [ undefined, 'bower', [ 'bower', null ] ]
verbose parsed url { pathname: 'bower', path: 'bower', href: 'bower' }
verbose addNamed [ 'bower', '' ]
verbose addNamed [ null, '' ]
silly name, range, hasData [ 'bower', '', false ]
verbose raw, before any munging bower
verbose url resolving [ 'https://registry.npmjs.org/', './bower' ]
verbose url resolved https://registry.npmjs.org/bower
http GET https://registry.npmjs.org/bower
ERR! Error: failed to fetch from registry: bower
ERR!     at /usr/share/npm/lib/utils/npm-registry-client/get.js:139:12
ERR!     at cb (/usr/share/npm/lib/utils/npm-registry-client/request.js:31:9)
ERR!     at Request._callback (/usr/share/npm/lib/utils/npm-registry-client/request.js:136:18)
ERR!     at Request.callback (/usr/lib/nodejs/request/main.js:119:22)
ERR!     at Request.<anonymous> (/usr/lib/nodejs/request/main.js:212:58)
ERR!     at Request.emit (events.js:88:20)
ERR!     at ClientRequest.<anonymous> (/usr/lib/nodejs/request/main.js:412:12)
ERR!     at ClientRequest.emit (events.js:67:17)
ERR!     at HTTPParser.onIncoming (http.js:1261:11)
ERR!     at HTTPParser.onHeadersComplete (http.js:102:31)
ERR! You may report this log at:
ERR!     <http://bugs.debian.org/npm>
ERR! or use
ERR!     reportbug --attach /home/sameer/npm-debug.log npm
ERR! 
ERR! System Linux 3.2.0-32-generic
ERR! command "node" "/usr/bin/npm" "install" "-g" "bower"
ERR! cwd /home/sameer
ERR! node -v v0.6.12
ERR! npm -v 1.1.4
ERR! message failed to fetch from registry: bower
verbose exit [ 1, true ]
like image 565
SameerShaik Avatar asked Sep 24 '14 15:09

SameerShaik


2 Answers

It seems like you're running a very old version of node and npm. It might need to be updated to install things correctly. I suggest you use the ppa. Please uninstall nodejs and then run this:

curl -sL https://deb.nodesource.com/setup | sudo bash -

This will add the node.js ppa to your repositories, so it will update like any other program. Now you just need to install it, thusly:

sudo apt-get install -y nodejs

and when that's done, run this again:

sudo npm install -g bower
like image 121
yuvi Avatar answered Oct 19 '22 16:10

yuvi


Apart from the old version of node which should be upgraded, many (all?) versions of ubuntu install node executable under nodejs name. This creates many issues with with some processes that try to execute node code by invoking node command.

The reason for this is there is another package in ubuntu with the node binary. If you do not need the other package, you may want to create a symlink:

$ whereis nodejs
nodejs: /whatever/path/nodejs
$ cd /whatever/path
$ sudo ln -s nodejs node
like image 1
Tomasz Rakowski Avatar answered Oct 19 '22 16:10

Tomasz Rakowski