E:\A Prem World\Team_Work_Tasks\Anjali\Anjali_20160524\QuizApp_20160524_01_Anj>ionic serve -l
(node:4772) fs: re-evaluating native module sources is not supported. If you are using the graceful-fs module, please update it to a more recent version.
There is an error in your gulpfile:
Error: Node Sass does not yet support your current environment: Windows 64-bit with false
For more information on which environments are supported please see:
TODO URL
    at Object.<anonymous> (E:\A Prem World\Team_Work_Tasks\Anjali\Anjali_20160524\QuizApp_20160524_01_Anj\node_modules\node-sass\lib\index.js:12:11)
    at Module._compile (module.js:541:32)
    at Object.Module._extensions..js (module.js:550:10)
    at Module.load (module.js:456:32)
    at tryModuleLoad (module.js:415:12)
    at Function.Module._load (module.js:407:3)
    at Module.require (module.js:466:17)
    at require (internal/module.js:20:19)
    at Object.<anonymous> (E:\A Prem World\Team_Work_Tasks\Anjali\Anjali_20160524\QuizApp_20160524_01_Anj\node_modules\gulp-sass\index.js:187:21)
    at Module._compile (module.js:541:32)

当前回答

下面的堆栈跟踪链接帮助我解决了这个问题。

Module build failed: Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (64)
For more information on which environments are supported please see:
https://github.com/sass/node-sass/releases/tag/v4.7.2

这个链接(https://github.com/sass/node-sass/releases/tag/v4.7.2)清楚地显示了所支持的节点版本。

    OS      Architecture    Node
    Windows x86 & x64       0.10, 0.12, 1, 2, 3, 4, 5, 6, 7, 8, 9
    ...     ...             ...    

将节点版本降级到8.11.1后,再次执行npm install。收到以下信息。

Node Sass could not find a binding for your current environment: Windows 64-bit with Node.js 8.x

Found bindings for the following environments:
  - Windows 64-bit with Unsupported runtime (64)

This usually happens because your environment has changed since running `npm install`.
Run `npm rebuild node-sass --force` to build the binding for your current environment.

最后,按照指示运行npm rebuild node-sass——force,一切都开始工作了

其他回答

我尝试了这个,但它不适合我,并抛出错误:

npm --depth 9999 update 
npm rebuild node-sass

我已经安装了最新的Node.js(目前是11.11.0 Current),在遇到这个问题后,我只是做了以下工作:

降级到推荐版本(目前是10.15.3 LTS) 你可以从NodeJS中获取, 删除node_modules和 然后重新安装纱线:

     yarn install
     yarn start

在执行这些命令之后,一切都运行正常。

命令npm uninstall node-sass && npm install node-sass对我没有帮助,但在安装Python 2.7和Visual c++构建工具后,我删除了node_modules文件夹,从管理员打开CMD并运行npm install——msvs_version=2015。安装成功!

这条评论和这个链接也会有所帮助。

我通过安装最新版本的python 2.7解决了这个问题。然后将包含python.exe文件的文件夹的路径添加到环境变量中。对我来说,路径是“C:\python27”,然后运行开始命令,它将工作。

这个问题很明显,因为gulp使用的是python 3。当它清楚地显示它使用python 2.7语法执行时,X版本。

import sys; print "%s.%s.%s" % sys.version_info[:3];

在我的例子中,这与节点版本有关。

我的项目使用的是12.18.3,但我使用的是14.5.0

所以npm rebuild node-sass没有在错误的节点版本(14.5.0)上解决这个问题。

我切换到正确的版本(12.18.3),所以它可以工作。

如果没有其他方法,请尝试安装低版本的节点。

查找可用的节点版本

Brew搜索节点

安装低版本,如12

Brew install node@12

断开现有版本的链接

酿造断开节点

使用新版本

酿造链接node@12

如果你得到这样的警告:“警告:node@12是keg-only,必须与——force链接”

Brew link—force—overwrite node@10 echo 'export

更新您的配置并提供资源

PATH="/usr/local/opt/node@12/bin:$PATH"' >> ~/. "bash_profile源 ~ / . bash_profile