编程语言
首页 > 编程语言> > npm安装node-sass失败

npm安装node-sass失败

作者:互联网

使用node v14 compile的时候一直说node sass does not yet support your current environment windows 64-bit with unsupported runtime 83

然后先是卸载了node-sass:

npm uninstall node-sass

打算重装:

npm install node-sass

但是会报错说本地没有python可以用

查了很多最后的问题是最新的node-sass和node v14不匹配

要下载对应的node-sass版本:

npm install node-sass@4.14.1 --D

参考:https://cxybb.com/article/Germxu/115988231

标签:npm,node,sass,v14,报错,install
来源: https://www.cnblogs.com/yuisabella/p/15564602.html