Skip to content

Instantly share code, notes, and snippets.

@ambirex
Forked from hersonls/less_install.sh
Last active August 29, 2015 14:26
Show Gist options
  • Save ambirex/6a56514716f7fb0d3181 to your computer and use it in GitHub Desktop.
Save ambirex/6a56514716f7fb0d3181 to your computer and use it in GitHub Desktop.
How to install less in DreamHost 1. Install node.js 2. Install npm 3. Install less
#!/bin/sh
git clone git://github.com/ry/node.git
cd node
./configure --prefix=~/.local/usr
make
make install
export npm_config_prefix=~/.local/usr && curl https://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