安装 Sass

应用程序

Mouse

有很多应用程序可以让您在几分钟内启动并运行 Sass,并且支持 Mac、Windows和 Linux 平台。这些程序 大部分是可以免费下载的,但也有一些是需要付费的(但完全值得)

Libraries

The Sass team maintains two Node.js packages for Sass, both of which support the standard JavaScript API. The sass package is pure JavaScript, which is a little slower but can be installed on all platforms Node.js supports. The sass-embedded package wraps a JS API around the Dart VM, so it's faster but only supports Windows, Mac OS, and Linux.

There are also community-maintained wrappers for the following languages:

命令行

Keyboard

通过命令行安装 Sass 后,你就可以执行 sass 命令把 .sass.scss文件编译为 .css 文件。 例如:

sass source/stylesheets/index.scss build/stylesheets/index.css

首先从下面列出的方法中选择一种方法安装 Sass,然后执行sass --version 命令以验证安装是否正确。如果安装成功,将输出 版本号1.63.6。你还可以执行 sass --help 获取 更多关于命令行用法的信息。

如果一切就绪,那就开始吧。如果你是个Sass 初学者,我们也为你准备了快速入门的资源。

深入了解 Sass

跨平台 (独立安装)
如果你用的是 Windows、Mac 或 Linux 系统,可以根据你的操作系统 [from GitHub 上下载对应的安装包并将可执行文件的路径添加到PATH环境变量中。没有外部依赖,也不需要安装任何其它东西。
跨平台 (通过npm)

如果你在使用 Node.js,你可以利用 npm安装 Sass:

npm install -g sass
但是,请注意:这种方式安装的 Sass 是纯 JavaScript 实现的,运行的速度比这里列出的其它安装方式安装的 Sass 要稍微慢一些。但是接口是完全一致的,所以,如果你需要更快的执行速度,稍后可以很容易地使用其他方式重新安装 Sass !
Install on Windows (Chocolatey)

If you use the Chocolatey package manager for Windows, you can install Dart Sass by running

choco install sass
Install on Mac OS X or Linux (Homebrew)

If you use the Homebrew package manager for Mac OS X or Linux, you can install Dart Sass by running

brew install sass/sass/sass