---
title: Install Sass
no_container: true
---
.sl-l-grid.sl-l-grid--full.sl-l-large-grid--fit.sl-l-large-grid--gutters-large
.sl-l-grid__column
:markdown
## Applications
![Mouse](illustrations/mouse.svg)
There are a good many applications that will get you up and running
with Sass in a few minutes for Mac, Windows, and Linux. You can download
most of the applications for free but a few of them are paid apps
(and totally worth it).
%ul
%li
= link_to "CodeKit", "https://codekitapp.com/"
(Paid)
Mac
%li
= link_to 'Ghostlab', 'http://www.vanamco.com/ghostlab/'
(Paid)
Mac
Windows
%li
= link_to 'Hammer', 'http://hammerformac.com/'
(Paid)
Mac
%li
= link_to 'LiveReload', 'http://livereload.com/'
(Paid, Open Source)
Mac
Windows
%li
= link_to 'Prepros', 'https://prepros.io/'
(Paid)
Mac
Windows
Linux
%li
= link_to 'Scout-App', 'http://scout-app.io/'
(Free, Open Source)
Windows
Linux
Mac
.sl-l-grid__column
:markdown
## Command Line
![Keyboard](illustrations/keyboard.svg)
When you install Sass on the command line, you'll be able to run the
`sass` executable to compile `.sass` and `.scss` files to `.css` files.
For example:
sass source/stylesheets/index.scss build/stylesheets/index.css
First install Sass using one of the options below, then run
`sass --version` to be sure it installed correctly. If it did, this will
include `#{impl_version(:dart)}`. You can also run `sass --help` for more
information about the command-line interface.
Once it's all set up, go and play. If you're brand new to
Sass we've set up some resources to help you learn pretty darn quick.
%p= link_to 'Learn More About Sass', '/guide', :class => 'sl-c-button sl-c-button--primary'
%dl
%dt Install Anywhere (Standalone)
%dd
You can install Sass on Windows, Mac, or Linux by downloading the
package for your operating system
#{link_to 'from GitHub', release_url(:dart)} and
adding it to your
PATH
. That's all—there are no external dependencies and
nothing else you need to install.
%dt Install Anywhere (npm)
%dd
%p
If you use Node.js, you can also install Sass using
npm by running
%pre
:preserve
npm install -g sass
However, please note that this will install the pure
JavaScript implementation of Sass, which runs somewhat slower than the
other options listed here. But it has the same interface, so it'll be
easy to swap in another implementation later if you need a bit more
speed!
%dt Install on Windows (Chocolatey)
%dd
%p
If you use the Chocolatey package
manager for Windows, you can install Dart Sass by running
%pre
:preserve
choco install sass
%dt Install on Mac OS X or Linux (Homebrew)
%dd
%p
If you use the Homebrew package
manager for Mac OS X or Linux, you can install Dart Sass by
running
%pre
:preserve
brew install sass/sass/sass