[Ubuntu] What are the steps to install compass and sass on Ubuntu14.04

| | 1 min read

Syntactically Awesome Stylesheets (Sass) is a CSS pre-processor, have .scss and .sass formats, and is similar to CSS3. Compass is a CSS authoring framework and is open source. For both compass and Sass we need to install ruby which is an object-oriented, reflective, dynamic, general-purpose programming language.

Following commands will help you to safely install compass and sass on ubuntu14.04 using terminal.

sudo apt-get install curl
gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
curl -L https://get.rvm.io | bash -s stable
source ~/.rvm/scripts/rvm
rvm install ruby-latest
gem install compass
gem install sass
gem install bootstrap-sass

Hope this may help you.

Please let us know if we can provide any further assistance on the above installations.