Last active
December 11, 2015 03:19
-
-
Save taka-wang/4536751 to your computer and use it in GitHub Desktop.
Install nodejs on ubuntu
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
# Install packages | |
sudo apt-get install g++ curl libssl-dev apache2-utils | |
sudo apt-get install git-core | |
# Run the following commands: | |
git clone git://github.com/ry/node.git | |
cd node | |
./configure | |
make | |
sudo make install | |
# Install express 3 | |
sudo npm install -g express |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment