jaumefontal/SASS-Build-SublimeText2

Decode error - output not utf-8, exit code 1

Opened this issue · 8 comments

Building scss file outputs this:

[Decode error - output not utf-8]
[Finished in 0.0s with exit code 1]

I am using Windows 7 x64.

+1 the same error

[Decode error - output not utf-8]
[Finished in 0.0s with exit code 1]

Also Windows 7 x64.

Building scss file outputs this in the console view (build results are empty):

Running sass --update C:\mypath\test.scss:C:\mypath\test.css --stop-on-error --no-cache --style compressed
Traceback (most recent call last):
File ".\sublime_plugin.py", line 337, in run_
File ".\exec.py", line 154, in run
File ".\exec.py", line 45, in init
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd8 in position 0: ordinal not in range(128)

Using Windows 7 x64

I have error on build too :-(

Running sass --update C:\path\screen.scss:C:\path/screen.css --stop-on-error --no-cache --style compressed
Traceback (most recent call last):
File ".\sublime_plugin.py", line 337, in run_
File ".\exec.py", line 154, in run
File ".\exec.py", line 45, in init
UnicodeDecodeError: 'ascii' codec can't decode byte 0xd1 in position 11: ordinal not in range(128)

Win 7.

[Decode error - output not utf-8]
[Finished in 0.1s with exit code 1]

[Decode error - output not utf-8]
[Finished in 0.0s with exit code 1]

Using Windows 7 x64

[Decode error - output not utf-8]

annnnnnnnnnnnnnnnnnnnnd what is this?

Hey, people )
you must install ruby and sass gem!

  1. Install Ruby on Windows (x64 version if you are in 64bit), select the "Add Ruby into variable path environment" option during your installation.
  2. Reboot your system (it's important!).
  3. Open the Ruby console, and enter "gem install sass" for install Sass (source: http://sass-lang.com/install).
  4. On sublime text ("sublime text 3" for me), open the package installer (ctrl+maj+p + "install" + enter) and install "SASS Build" (compiler for sass and scss files => generate css file for you) and "SublimeOnSaveBuild" (auto-compiler when you save your file) packages.
  5. Create/Open by example a .scss file, save (ctrl+s) and your css file is generated !

Extra) Inside "Tools => Build System", you can enable "SASS - Compressed" if you want minified your css file.