Last active
December 28, 2015 17:59
-
-
Save bonndan/7539479 to your computer and use it in GitHub Desktop.
install nodejs Ubuntu 12.04
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 install python-software-properties python g++ make | |
sudo add-apt-repository ppa:chris-lea/node.js | |
sudo apt-get update | |
sudo apt-get dist-upgrade -y | |
sudo apt-get install nodejs | |
# | |
# npm can install npm | |
# | |
sudo npm install -g npm | |
# | |
# libs are installed elsewhere because of sudo | |
# | |
ln -s /usr/lib/node_modules/ /home/daniel/.node_libraries |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment