Skip to content

Instantly share code, notes, and snippets.

@michaelnisi
Created November 17, 2012 18:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaelnisi/4098589 to your computer and use it in GitHub Desktop.
Save michaelnisi/4098589 to your computer and use it in GitHub Desktop.
Install Node on Amazon Linux AMI
#!/bin/sh
sudo yum update
sudo yum install gcc-c++
sudo yum install git
git clone git://github.com/joyent/node.git
cd node
git checkout v0.8.14
./configure
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment