Created
August 25, 2011 21:09
-
-
Save cyakimov/1171968 to your computer and use it in GitHub Desktop.
Install NodeJS in CentOS / Fedora
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
yum groupinstall "Development Tools" | |
#get the lastest in nodejs.org | |
wget http://nodejs.org/dist/node-v0.4.11.tar.gz | |
tar xvzf node-v0.4.11.tar.gz | |
cd node-v0.4.11 | |
./configure && make && make install | |
curl http://npmjs.org/install.sh | sh | |
#Additional install coffee-script | |
npm -g install coffee-script |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment