Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Working on Ec2 on AWS.

I have installed Node.js and it works fine.

But the problem arises when trying to install npm.

I am using the following command to install it:

sudo curl http://npmjs.org/install.sh | sh

But the install seems to freeze... I get "fetching: http://registry.npmjs.org/npm/-/npm-1.0.106.tgz" at the prompt and it stays on like this.

Have any idea what is going on here?

share|improve this question
Sometimes the registry is down. Check out this page: npmjs.org/doc/faq.html – racar Nov 20 '11 at 23:09
Also, try to improve your accept rate – Jahufar Nov 21 '11 at 8:15
@Jahufar Mind if you tell how to improve accept rate? am a linux rookie and i did a google search on the term and nothing really useful came up. Thanks – dade Nov 21 '11 at 9:43
@dade Jahufar means your stackoverflow accept rate. You've asked 15 questions and only accepted one answer. Improving your accept rate on stackoverflow will encourage people to help you when you ask questions. – Chris Biscardi Nov 21 '11 at 15:59
@Jahufar...Thanks for the lil SO tip :) – dade Nov 21 '11 at 17:20
show 1 more comment

1 Answer

Try this:

sudo yum localinstall --nogpgcheck http://nodejs.tchol.org/repocfg/amzn1/nodejs-stable-release.noarch.rpm
sudo yum install nodejs-compat-symlinks npm

as described here: https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager, section "To install node on Amazon Linux"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.