Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialSuzanne Cranen
7,497 PointsInstalling and Using Sass
Hi, I try to start with Sass, but when I open my terminal and then type in "sass --version" I only get the response: "-bash: sass: command not found", what do I have to do?
2 Answers
Ali M Malik
33,293 PointsYou have to install sass first, sass --version
checks if you have it installed or not and returns the version number. You can install sass using gem install sass
, if it tells you that you don't have permission to do it use the sudo
command to make it run.
Suzanne Cranen
7,497 PointsThanks! now it's working :D