Skip to content

Instantly share code, notes, and snippets.

@jed
Created August 27, 2012 06:06
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 jed/3486076 to your computer and use it in GitHub Desktop.
Save jed/3486076 to your computer and use it in GitHub Desktop.
installing node on a new ec2 instance (amazon AMI)
sudo yum update
sudo yum install -y gcc-c++.x86_64
sudo yum install -y openssl-devel.x86_64
sudo yum install -y make.x86_64
sudo yum install -y git
git clone git://github.com/joyent/node.git
cd node
git checkout v0.8.8-release
./configure
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment