Skip to content

Instantly share code, notes, and snippets.

@jed
Created August 27, 2012 06:06
Show Gist options
  • Select an option

  • Save jed/3486076 to your computer and use it in GitHub Desktop.

Select an option

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