I\'m using bash in windows.
Getting this error when trying to run a sass compiler command via gulp. I have Ruby & Sass installed. Sass works fine when running it man
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.