Created
December 6, 2011 11:26
-
-
Save olegp/1437859 to your computer and use it in GitHub Desktop.
Bash script to install Node.js on Ubuntu from launchpad
This file contains hidden or 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 node and node-dev (needed by node-fibers) | |
apt-get install python-software-properties curl -y | |
add-apt-repository ppa:chris-lea/node.js-devel <<EOF | |
EOF | |
apt-get update | |
apt-get install nodejs -y | |
apt-get install build-essential -y | |
apt-get install nodejs-dev -y | |
ln -s /usr/include/nodejs /usr/include/node |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment