Error: spawn ENOENT: missing the sass executable Error: spawn ENOENT: missing the sass executable windows windows

Error: spawn ENOENT: missing the sass executable


I had the same issue, fixed it by typing this;

sudo gem install sass


Your gulp-ruby-sass task is probably configured to execute SASS using Bundler (a gem dependency manager). When you don't have Bundler installed, that execution will fail with the error message you've quoted. Check your task configuration for the parameter "bundleExec" and make sure it's set to false, that way gulp-ruby-sass will run the SASS command directly.


A reboot didn't fix it unfortunately. I swapped out the gulp-ruby-sass for the gulp-sass plugin and all is working fine.

It's hardly a fix but it served as a solution for me.