I've encountered an issue while trying to compile sass through the terminal. Despite having already installed node.js and successfully using Live Sass, I consistently receive the following error message:
sass : The term 'sass' is not recognized as the name of a cmdlet, function, script file, or operable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ sass -watch scss:css
+ ~~~~
+ CategoryInfo : ObjectNotFound: (sass:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Additionally, I'm looking to incorporate @use
, which is currently unsupported by the Live Sass compiler. Could there be something amiss in my process? Is there perhaps another dependency that needs to be installed?
I have already ensured the installation of Sass through npm install sass
.