Forked from stephanetimmermans/gist:5496788
Created
May 2, 2013 04:32
Star
You must be signed in to star a gist
Install Node Js and NPM in Ubuntu 13.04
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install build-essential libssl-dev curl | |
# The install script | |
# Adapted from https://gist.github.com/579814 | |
echo '# Added by install script for node.js and npm in 30s' >> ~/.bashrc | |
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
echo 'export NODE_PATH=$HOME/local/lib/node_modules' >> ~/.bashrc | |
. ~/.bashrc | |
mkdir -p ~/local | |
mkdir -p ~/Downloads/node-latest-install | |
cd ~/Downloads/node-latest-install | |
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
./configure --prefix=~/local # if SSL support is not required, use --without-ssl | |
make install | |
source ~/.bashrc | |
node -v | |
npm -v | |
#In case of bash: /usr/local/bin/npm: No such file or directory | |
hash -r | |
npm -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
git clone git://github.com/joyent/node.git
cd node
./configure --prefix=~/local
make install
cd ..
git clone git://github.com/isaacs/npm.git
cd npm
make install # or
make link
for bleeding edge