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

前端 未结 19 1631
悲&欢浪女
悲&欢浪女 2020-12-02 11:27

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 fal         


        
相关标签:
19条回答
  • 2020-12-02 12:21

    That worked for me:

    sudo npm cache clean -f
    sudo npm install -g n
    sudo n 6.0.0
    
    0 讨论(0)
  • 2020-12-02 12:21

    npm uninstall node-sass

    npm i node-sass@4.7.2

    https://dev.to/letsbsocial1/node-sass-and-node-910-4ol

    0 讨论(0)
  • 2020-12-02 12:26

    in some cases you need to uninstall and install node-sass library. Try:

    npm uninstall --save-dev node-sass
    

    and

    npm install --save-dev node-sass
    
    0 讨论(0)
  • 2020-12-02 12:27

    I had the same issue for windows x64 Platform.

    Just updated the package.json with newer version of node-saas instead rebuild because in order to rebuild you need visual studio build environment which is suck to install for a dependency :)…

    go with latest node-saas you should be fine:

    "node-sass": "^4.11.0",
    
    0 讨论(0)
  • 2020-12-02 12:29

    You should also check your version of nodejs. I was on a version 9 of node js which isn't officially supported at this time of writing. Reverting back to version 6.11.4 fixed the issue for me.

    0 讨论(0)
  • 2020-12-02 12:33

    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

    0 讨论(0)
提交回复
热议问题