SASS是一種CSS的開發工具,提供了許多便利的寫法,大大節省了設計者的時間,使得CSS的開發,變得簡單和可維護。css
SASS在Windows操做系統內依賴於Ruby環境,所以在安裝SASS以前:git
一、須要先安裝Ruby。Ruby現階段的安裝與通常應用程序安裝沒有太大區別,環境變量等由安裝程序自行設置。github
二、Ruby環境內有個包管理器——GEM,它相似於Nodejs下的NPM,它隨着Ruby一塊兒被安裝,所以不須要額外安裝。瀏覽器
使用 rubyinstall 安裝 ruby
官方網站: http://rubyinstaller.org/sass
安裝好以後須要對ruby換源,由於國內你懂的,參見 https://ruby.taobao.org/ 操做以下 :ruby
gem sources --remove https://rubygems.org/ gem sources -a https://ruby.taobao.org/ gem sources -l
若是在換源時提示以下錯誤信息:服務器
這是ruby沒有包含SSL證書,因此Https的連接被服務器拒絕,解決方法很簡單,首先在這裏下載證書(http://curl.haxx.se/ca/cacert.pem), 或者在瀏覽器裏把這個文件內容複製(或者點擊此處下載),服務器建立一個新文件cacert.pem,內容粘貼進去,而後再環境變量裏設置SSL_CERT_FILE這個環境變量,在系統的環境變量裏設置SSL_CERT_FILE這個環境變量,並把value指向這個文件,退出命令行窗口 從新執行添加命令便可curl
gem install sass
sass test.scss test.css --style # nested:嵌套縮進的css代碼,它是默認值 # expanded:沒有縮進的、擴展的css代碼。 # compact:簡潔格式的css代碼。 # compressed:壓縮後的css代碼。 # watch a file sass --watch input.scss:output.css # watch a directory sass --watch ap/some:some/name
gem install compass
compass create my-project cd my-project compass watch
compass create my-project
「Errno::EACCES on line [」897「] of C: Permission denied」
LoadError on line ["55"] of D: cannot load such file -- compass/import-once/activate
工具
解決方法:開發工具
// uninstall gem uninstall sass gem uninstall compass // install pre version gem install compass --pre gem install sass --pre
compass watch
LoadError on line ["55"] of D: cannot load such file -- wdm
解決方法
安裝 wdm
gem install wdm
ERROR: Error installing wdm: The 'wdm' native gem requires installed build tools.
Please update your PATH to include build tools or download the DevKit
from 'http://rubyinstaller.org/downloads' and follow the instructions
at 'http://github.com/oneclick/rubyinstaller/wiki/Development-Kit'
devKit
包 而後根據 上邊給出的地址進行 devKit的安裝