Created
December 14, 2010 12:38
-
-
Save sebs/740358 to your computer and use it in GitHub Desktop.
Setup node.js on Ubuntu 10.10 - Amazon EC2 Instance
This file contains 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 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