Search code examples
node.jsnode-gypnode-sass

Node-sass Python version compatibility


I am using 4.14.1 in my project and with Node 14. I need to know which version of Python is needed to run node-gyp.

I also went through the repo link: https://www.npmjs.com/package/node-sass, but not able to find the details of Python version.


Solution

  • Solution

    Install and use sass instead of node-sass. Because node-sass is now deprecated.

    npm uninstall node-sass
    npm install sass
    

    It works all the same (no additional changes needed)