Created
February 16, 2012 06:08
-
-
Save johnmdonahue/1842561 to your computer and use it in GitHub Desktop.
Quick Node Install from GitHub
This file contains hidden or 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 update | |
$ sudo apt-get install git-core curl build-essential openssl libssl-dev | |
# node | |
$ git clone git://github.com/joyent/node.git && cd node | |
$ git checkout v0.6.17 | |
$ ./configure | |
$ make | |
$ sudo make install | |
# npm | |
$ curl http://npmjs.org/install.sh | sudo sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment