Created
August 8, 2012 09:06
-
-
Save Fabryz/3293643 to your computer and use it in GitHub Desktop.
How to install Node.js on Linux
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 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