Linux – Node Sass does not yet support your current environment: Linux 64-bit with Unsupported runtime (57)

64-bitlinuxnode.jsUbuntu

I am getting the error:

Node Sass does not yet support your current environment: Linux 64-bit with Unsupported runtime (57)

while running gulp command.

I have tried deleting node_modules folder and re-running npm install after running npm cache clean. I have tried the highly recommended npm rebuild node-sass. But, to no avail.

Version information:

  • UBUNTU: 18.04.1
  • node: 5.4.0
  • npm: 3.3.12
  • node-sass:
    • gulp-sass@2.3.2
      • node-sass@3.13.1

Attaching screenshot of the error. Any help/solution would be highly appreciated.

Error Screenshot

Best Answer

I know it's an old issue, but I got a diferent solution than the posted on comments. I started to face this issue when I updated my npm to the latest version in my Ubuntu 18.04. So, I rebuilt the node-sass package using the following command: npm rebuild node-sass

And then, the things worked as expected again.

Related Question