Created
May 30, 2016 16:44
-
-
Save AungMyoKyaw/77ea2e27a3f973ee4472993b75b3ac1e to your computer and use it in GitHub Desktop.
Compass installation for ubuntu 16.04
This file contains 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
[https://gist.github.com/stephou0104/233b5c99884f1d8c8b8b#file-ubuntu-compass-ruby] | |
sudo apt-get update | |
sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties | |
sudo apt-get install libgdbm-dev libncurses5-dev automake libtool bison libffi-dev | |
curl -L https://get.rvm.io | bash -s stable | |
gpg2 --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 | |
source ~/.rvm/scripts/rvm | |
echo "source ~/.rvm/scripts/rvm" >> ~/.bashrc | |
if you are using zsh shell { | |
echo "source ~/.rvm/scripts/rvm" >> ~/.zshrc | |
} | |
rvm install 2.3 | |
rvm use 2.3.1 --default | |
gem install compass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment