Skip to content

Instantly share code, notes, and snippets.

@sebs
Created December 14, 2010 12:38
Show Gist options
  • Save sebs/740358 to your computer and use it in GitHub Desktop.
Save sebs/740358 to your computer and use it in GitHub Desktop.
Setup node.js on Ubuntu 10.10 - Amazon EC2 Instance
sudo apt-get update
sudo apt-get install libssl-dev
sudo apt-get install g++
wget http://nodejs.org/dist/node-v0.3.1.tar.gz
tar -xvf node-v0.3.1.tar.gz
cd node-v0.3.1
./configure
make
sudo make install
cd ~
sudo chown -R $USER /usr/local/{share/man,bin,lib/node}
curl http://npmjs.org/install.sh | sh
npm install express
npm install zappa
npm install jade
npm install expresso
sudo /etc/init.d/apache2 stop
sudo agt-get remove apache2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment