Skip to content

Instantly share code, notes, and snippets.

@iloveitaly
Created August 7, 2011 00:33
Show Gist options
  • Save iloveitaly/1129928 to your computer and use it in GitHub Desktop.
Save iloveitaly/1129928 to your computer and use it in GitHub Desktop.
Install Node + LESS on a Dreamhost Server
#!/bin/bash
mkdir ~/tmp
curl http://nodejs.org/dist/node-v0.4.10.tar.gz -O
tar -xvf node-v0.4.10.tar.gz
cd node-v0.4.10
./configure --prefix=/usr && make
sudo make install
curl http://npmjs.org/install.sh | sh
npm install less -g
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment