Skip to content

Instantly share code, notes, and snippets.

@cyakimov
Created August 25, 2011 21:09
Show Gist options
  • Save cyakimov/1171968 to your computer and use it in GitHub Desktop.
Save cyakimov/1171968 to your computer and use it in GitHub Desktop.
Install NodeJS in CentOS / Fedora
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