使用与 node-sass 版本兼容的 node
到 package.json 中找到 node-sass 的版本号。使用 nvm 将 node 切换到与 node-sass 版本兼容的版本(sass/node-sass 有版本对照表)。
安装指定版本的 python 并将其设置为环境变量
node-sass 依赖的可能是 python2,如果本机只安装了 python3,则会报错。
先确保安装了 python2,复制 python 解释器的安装路径,比如D:\install\Python27\python.exe
,运行npm config set python D:\install\Python27\python.exe
,再运行npm install
(可能需要先删掉 node_modules 文件夹)。
参考:
2022:checking for Python executable "python2" in the PATH
为什么node-sass总是安装失败?