Skip to content

Instantly share code, notes, and snippets.

@davemo
Last active December 24, 2015 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davemo/6786408 to your computer and use it in GitHub Desktop.
Save davemo/6786408 to your computer and use it in GitHub Desktop.
Installing latest node.js, sass on ubuntu 12.10
sudo apt-get update
sudo apt-get install python-software-properties python g++ make
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
## Your version may be different. Look for "Version:" in /var/lib/apt/lists/ppa.launchpad.net_chris-lea_node.js_[...]_Packages (ellipsised part of path varies with setup)
sudo apt-get install nodejs=0.10.20-1chl1~precise1
# @@ Why does one need to specify the install version? @@
# we also need the sass gem
sudo gem install sass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment