1

I'm using Node v16.14.0 and cannot install Sass. Here is the error I'm getting:

enter image description here

Youssouf Oumar
  • 29,373
  • 11
  • 46
  • 65

1 Answers1

4

You have NPM v3.10.10 with Node v16.14.0, where the default NPM is v8.3.1 for that Node version. It's not about Sass, I would suggest you to upgrade your NPM version:

npm i -g npm
Youssouf Oumar
  • 29,373
  • 11
  • 46
  • 65