Skip to content

Instantly share code, notes, and snippets.

@Fabryz
Created August 8, 2012 09:06
Show Gist options
  • Save Fabryz/3293643 to your computer and use it in GitHub Desktop.
Save Fabryz/3293643 to your computer and use it in GitHub Desktop.
How to install Node.js on Linux
$ sudo apt-get install git-core python libssl-dev build-essential
$ git clone git://github.com/joyent/node.git node && cd node
$ git checkout v0.8.6 (or check the latest stable version on https://github.com/joyent/node/tags)
$ ./configure
$ make (it will take some time)
$ sudo make install
Do a check with:
$ node -v
$ npm -v
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment