made it very difficult for me to install npm, the node.js package manager. So, without further ado:
Installing Node.js
git clone git://github.com/ry/node.git cd node ./configure --prefix=$HOME/my_node make installOpen $HOME/.profile and add:
export PATH=$PATH:$HOME/my_node/binThen run:
source $HOME/.profile
Installing npm
Simply do:
curl http://npmjs.org/install.sh | sh