Created
August 7, 2011 00:33
-
-
Save iloveitaly/1129928 to your computer and use it in GitHub Desktop.
Install Node + LESS on a Dreamhost Server
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
#!/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