Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I install Compass with an old version of SASS?

When installing Compass (on Linux command line), can I specify which old version of SASS will be installed with it?

like image 529
mikkohei13 Avatar asked Sep 13 '25 18:09

mikkohei13


1 Answers

You can install a specific version of SASS using the following command:

gem install sass -v 3.3.4

Replace 3.3.4 with the preferred version.

You can find a list with all versions of SASS at RubyGems

like image 66
Matthijs Avatar answered Sep 17 '25 20:09

Matthijs