Skip to content

Instantly share code, notes, and snippets.

@michaelowens
Forked from x-Code-x/readme_install_node
Last active August 29, 2015 13:56
Show Gist options
  • Save michaelowens/9090909 to your computer and use it in GitHub Desktop.
Save michaelowens/9090909 to your computer and use it in GitHub Desktop.
#
# Install node.js which has npm bundled
#
#Build Dependencies
sudo apt-get update && sudo apt-get install git-core curl build-essential openssl libssl-dev
#Install Node.js & NPM
git clone https://github.com/joyent/node.git
cd node
# 'git tag' shows all available versions: select the latest stable.
git checkout v0.10.26
# Configure seems not to find libssl by default so we give it an explicit pointer.
# Optionally: you can isolate node by adding --prefix=/opt/node
./configure --openssl-libpath=/usr/lib/ssl
make && make test && sudo make install
node -v # it's alive!
# Luck us: NPM is packaged with Node.js source so this is now installed too, if not:
# curl http://npmjs.org/install.sh | sudo sh
npm -v # it's alive!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment