Node Sass does not yet support your current enviro

2019-01-11 00:21发布

Getting this error on Arch Linux with node-sass. I'm using it with gulp-sass.

Node Sass does not yet support your current environment: Linux 64-bit with false

Versions

$ gulp -v
[19:43:15] CLI version 3.9.1
[19:43:15] Local version 3.9.1

$ npm -v
3.9.0

Node

$ node -v
v6.2.0

Even using this command npm rebuild node-sass is not changing anything.

10条回答
欢心
2楼-- · 2019-01-11 00:54

run npm rebuild node-sass

or

run sudo npm rebuild node-sass

查看更多
戒情不戒烟
3楼-- · 2019-01-11 00:54

Remove node modules: $rm-rf node_modules

Re install node modules: $npm install

查看更多
时光不老,我们不散
4楼-- · 2019-01-11 00:55

I don't know if this applies here, but for me, I just removed node_modules and reinstalled (npm install). Issue was fixed.

查看更多
Juvenile、少年°
5楼-- · 2019-01-11 00:58

Remove node_modules/node-sass folder & run npm install (this may take some time based on the dependencies) then run npm run build

This should resolve the issue

查看更多
登录 后发表回答