6

I am using windows 10. Have installed npm version 5.6.0,node v8.10.0 and Python 2.7.

Getting grunt-sass is not installed even after installing npm using the command "npm install". After that I installed grunt using command:

npm install -g grunt-cli

Also, sometimes get an error like

"Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime"

Any help will be really appriciated.

Sunil
  • 3,404
  • 10
  • 23
  • 31
Damodar Singh
  • 59
  • 1
  • 1
  • 6

1 Answers1

7
  1. In your project folder where package.json exists, run:

    npm install
    
  2. However, if the grunt-sass does not exist in your package.json, run:

    npm install grunt-sass
    
  3. If you want it to be saved for future npm install, run:

    npm install grunt-sass --save
    
RobC
  • 22,977
  • 20
  • 73
  • 80
Hans Yulian
  • 1,080
  • 8
  • 26