0👍
SASS is not language specific anymore, you don’t need to use npm, yarn or pip to compile sass. Now it works kind of same way how you use Python’s Interpretter.
Download the SASS compiler from here for your operating system –
https://github.com/sass/dart-sass/releases/tag/1.52.1
Now extract the dart-sass folder form the compressed file and move it to desired location.
In my case it was :
C:\Users\vikas\development\dart-sass
Now add the location of your dart-sass folder to path.
Search on Internet how to add a location to path for your operating system.
Hope this helps.
Edit : To compile you have to use Terminal.
Use the following command :
sass ./source_file.scss ./build/output_file.css
👤Neel
Source:stackexchange.com