npm install时报npm ERR! code 1npm ERR! path D:SSO\easy-backend-ui\node_modules\node-sass

报错信息如下:

npm ERR! code 1
npm ERR! path D:\workspace\exchange\exchange-web\exchange-web-ui\node_modules\node-sass
npm ERR! command failed
npm ERR! command C:\Windows\system32\cmd.exe /d /s /c node-gyp rebuild
npm ERR! gyp info it worked if it ends with ok
npm ERR! gyp info using node-gyp@3.8.0
npm ERR! gyp info using node@13.6.0 | win32 | x64
npm ERR! gyp ERR! configure error
npm ERR! gyp ERR! stack Error: Can't find Python executable "python", you can set the PYTHON env variable.
npm ERR! gyp ERR! stack     at PythonFinder.failNoPython (D:\workspace\exchange\exchange-web\exchange-web-ui\node_modules\node-gyp\lib\configure.js:484:19)
npm ERR! gyp ERR! stack     at PythonFinder.<anonymous> (D:\workspace\exchange\exchange-web\exchange-web-ui\node_modules\node-gyp\lib\configure.js:509:16)
npm ERR! gyp ERR! stack     at callback (D:\workspace\exchange\exchange-web\exchange-web-ui\node_modules\graceful-fs\polyfills.js:299:20)
npm ERR! gyp ERR! stack     at FSReqCallback.oncomplete (fs.js:166:21)
npm ERR! gyp ERR! System Windows_NT 10.0.19043
npm ERR! gyp ERR! command "D:\\software\\node\\node.exe" "D:\\workspace\\exchange\\exchange-web\\exchange-web-ui\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild"
npm ERR! gyp ERR! cwd D:\workspace\exchange\exchange-web\exchange-web-ui\node_modules\node-sass
npm ERR! gyp ERR! node -v v13.6.0
npm ERR! gyp ERR! node-gyp -v v3.8.0
npm ERR! gyp ERR! not ok

我当前的node版本:

D:\SSO\goose-sso\easy-backend-ui>node -v
v16.17.0

package.json中node-sass的版本是:“node-sass”: “^4.14.0”,

从网上看到,是node-sass的版本和node的版本不匹配导致;
在npm install时,在后面加上node-sass的对应版本就可以了
上代码:

npm install node-sass@7.0.1

猜你喜欢

转载自blog.csdn.net/m0_51963973/article/details/129980145