node-sass在我的angular项目npm install上出现问题(Mac OS)

8nuwlpux  于 2023-10-19  发布在  Angular
关注(0)|答案(4)|浏览(134)

我尝试为我的角项目安装node_modules,我得到了node-sass的问题,我使用mac os,node js版本-> v16.13.2,项目中的node-sass版本->^4.14.1在这个image1image2是package.json我得到的错误是:

npm ERR! 1 warning and 1 error generated.
npm ERR! make: *** [Release/obj.target/binding/src/binding.o] Error 1
npm ERR! gyp ERR! build error 
npm ERR! gyp ERR! stack Error: `make` failed with exit code: 2
npm ERR! gyp ERR! stack     at ChildProcess.onExit (../node_modules/node-gyp/lib/build.js:262:23)
npm ERR! gyp ERR! stack     at ChildProcess.emit (node:events:390:28)
npm ERR! gyp ERR! stack     at Process.ChildProcess._handle.onexit (node:internal/child_process:290:12)
npm ERR! gyp ERR! System Darwin 20.6.0
npm ERR! gyp ERR! command "/usr/local/bin/node" ".../node_modules/node-gyp/bin/node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="
npm ERR! gyp ERR! cwd .../node_modules/node-sass
npm ERR! gyp ERR! node -v v16.13.2
npm ERR! gyp ERR! node-gyp -v v3.8.0
npm ERR! gyp ERR! not ok 
npm ERR! Build failed with error code: 1

npm ERR! A complete log of this run can be found in:
npm ERR!     .../.npm/_logs/2022-01-25T10_04_49_137Z-debug-0.log

我绑定了这个命令npm install -g node-sass,npm uninstall -g node-sass我试图安装最新版本的node-sass

yrdbyhpb

yrdbyhpb1#

从你的package.json中删除node-sass.解决了我的问题

gwo2fgha

gwo2fgha2#

我找到了解决这个问题的办法。只需降级节点版本,它就可以工作

eni9jsuy

eni9jsuy3#

您可能需要运行npm upgrade来让npm检查依赖项的过时版本。
因为对于node 16,在6.0+版本中需要node-sass

bttbmeg0

bttbmeg04#

第一个解决方案

请确保您的node.js版本没有上级于recommended版本。如果没有,请降级它,为此,您可以使用npm中的n包:

npm install -g n
n stable
# If one of the commands does not pass, you may need to use sudo
sudo npm install -g n
sudo n stable

然后你会想要使用sass包而不是node-sass,因为它已经过时了。为此,运行这些命令:

npm uninstall node-sass --save
npm install sass --save

第二种解决方案

如果您出于某种原因需要或想要node-sass,您应该将nodejs版本降级为类似v14。您可以使用npm中的n包:

npm install -g n
n 14
# If one of the commands does not pass, you may need to use sudo
sudo npm install -g n
sudo n 14

相关问题