Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime解决方案
有一段日子没有运行vue 项目,再次运行提示:Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime.通过百度,知道可能与node-js版本过高有关系.解决办法:1.打开cmd,输入 where node2.找别人要一份,低版本的node-js(也是输入wher
有一段日子没有运行vue 项目,再次运行提示:
Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime.
通过百度,知道可能与node-js版本过高有关系.
解决办法:
1.打开cmd,输入 where node
2.找别人要一份,低版本的node-js(也是输入where node后显示的目录),然后替换掉该目录下的node-js.(我的是从16版本降到了14版本)
3.再次运行vue项目,看看能不能运行.
4.如果提示:
Node Sass version 7.0.0 is incompatible with ^4.0.0.
那么就先卸载掉当前的node-sass
npm uninstall node-sass
在安装4.0版本的
npm install node-sass@4.14.1
然后应该就可以运行了.
ps:1.如果安装失败,那么可能是因为node-js 版本高导致的.16版本说让我换成更高版本的node-sass,4版本可能有bug,将node-js换成14版本,安装node-sass 4.0.0版本就没有遇到安装失败了.
2.没有将npm 镜像换成中国的,先换成中国的镜像,下载速度快.
更多推荐
所有评论(0)