jaumefontal / SASS-Build-SublimeText2

SASS build sytem for Sublime Text 2
135 stars 34 forks source link

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

Open CyberAP opened 12 years ago

CyberAP commented 12 years ago

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.

vrusua commented 11 years ago

+1 the same error

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

Also Windows 7 x64.

trollsyn commented 11 years ago

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 ".\sublimeplugin.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

antixrist commented 11 years ago

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 ".\sublimeplugin.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.

bubujie commented 11 years ago

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

allanesquina commented 11 years ago

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

Using Windows 7 x64

rixaman commented 11 years ago

[Decode error - output not utf-8]

annnnnnnnnnnnnnnnnnnnnd what is this?

rixaman commented 11 years ago

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

AxelBriche commented 10 years ago

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.