Module build failed: Error: Missing binding /Users/neon/Desktop/neon-renren-fast-vue/node_modules/[email protected]@node-sass/vendor/darwin-x64-79/binding.node
Node Sass could not find a binding for your current environment: OS X 64-bit with Node.js 13.x
Found bindings for the following environments:
- OS X 64-bit with Unsupported runtime (83)
This usually happens because your environment has changed since running `npm install`.
Run `npm rebuild node-sass` to download the binding for your current environment.
注意,报错给了解决方案,让我用【npm rebuild node-sass】重新建立node-sass和当前环境的连接。
再次运行,npm run dev, 成功~
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/v3.13.1
at module.exports (E:\taishou\taiping\node_modules\_node-sass@3
详细解决Node启动与macos环境不兼容问题:
1. Node Sass does not yet support your current environment: OS X 64-bit with Unsupported runtime
2. gyp: No Xcode or CLT version detected!
3. Error:Node Sass version 5.0.0 is incompatible with ^4.0.0
Error: Node Sass does not yet support your current environment: OS X 64-bit with Unsupported runtime
Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime问题解决
Node Sass does not yet
support your
current environment: Windows
64-bit with Un
supported runtime问题解决
运行原先vue程序时,npm run dev 却报错
怀疑是安装新版本安卓环境可能对之前vue2.0开发冲突。
Node Sass does not yet
support your
current environment: Windows
64-bit with Un
supported runtime
https://www.jianshu.com/p/6a518fb4b8bd
https://blog.csdn.net/youcijibi/article/details/81939418
解决方案:
node-
sass,
sass-loader的版本号~替换为^
项目中报错:
Error: Node Sass does not yet support your current environment: OS X 64-bit with Unsupported runtime (72)
此时node-sass的版本号是@4.9.0
解决办法:
移除该版本,重新安装版本为@4.13.0的包
npm uninstall node-sass
npm instal...
Node Sass does not yet support your current environment: OS X 64-bit with Unsupported runtime (93)是一种错误信息,它表示Node Sass不支持您当前的操作系统环境和运行时。这通常意味着您的环境不兼容Node Sass库。要解决这个问题,您可以尝试以下几个步骤:
1. 确保您的操作系统和Node.js版本符合Node Sass的要求。您可以在Node Sass的官方文档中查找支持的环境和版本要求。
2. 如果您的Node.js版本较旧,尝试升级到最新版本。使用nvm(Node Version Manager)或类似的工具可以方便地管理Node.js版本。
3. 检查您的项目中是否有冲突的依赖项。有时其他包可能与Node Sass产生冲突,导致不兼容性问题。可以尝试更新或删除相关的依赖项。
4. 如果您仍然遇到问题,可以考虑使用其他的CSS预处理器,例如Less或Stylus,作为替代方案。