這篇文章主要介紹了npm node gyp失敗如何解決的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇npm node gyp失敗如何解決文章都會(huì)有所收獲,下面我們一起來看看吧。
創(chuàng)新互聯(lián)專注于企業(yè)成都營銷網(wǎng)站建設(shè)、網(wǎng)站重做改版、錦屏網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、HTML5建站、電子商務(wù)商城網(wǎng)站建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為錦屏等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
npm node gyp失敗是因?yàn)椤皀ode-gyp.js”跟“Node.js”版本不匹配,其解決辦法:1、通過“npm cache clean -f”清除node緩存;2、通過“npm install -g n”安裝n模塊;3、通過“n v12.21.0”命令安裝“node v12.21.0”版本即可。
npm install報(bào)node-gyp相關(guān)錯(cuò)誤
我在構(gòu)建一個(gè)vue項(xiàng)目時(shí),報(bào)了node-gyp構(gòu)建相關(guān)錯(cuò)誤,錯(cuò)誤信息如下
1 error generated.
make: *** [Release/obj.target/binding/src/binding.o] Error 1
gyp ERR! build error
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack at ChildProcess.onExit (/Users/xingxin/code_sxf2/nft-server/nft-ui/node_modules/node-gyp/lib/build.js:262:23)
gyp ERR! stack at ChildProcess.emit (node:events:527:28)
gyp ERR! stack at Process.ChildProcess._handle.onexit (node:internal/child_process:291:12)
gyp ERR! System Darwin 20.4.0
gyp ERR! command "/usr/local/bin/node" "/Users/xingxin/code_sxf2/nft-server/nft-ui/node_modules/node-gyp/bin/node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="
gyp ERR! cwd /Users/xingxin/code_sxf2/nft-server/nft-ui/node_modules/node-sass
gyp ERR! node -v v16.15.1
經(jīng)過各種嘗試才發(fā)現(xiàn)
原因是node-gyp.js跟我的Node.js版本不匹配,我的Node版本太高了
經(jīng)過嘗試發(fā)現(xiàn)Node降級(jí)到 v12.21.0版本后,構(gòu)建成功。
降級(jí)操作相關(guān)命令:
# 查看當(dāng)前node版本
node –v
# 清除node緩存
npm cache clean -f
# 安裝n模塊
npm install -g n
# 安裝v12.21.0版本
n v12.21.0
# 查看當(dāng)前node版本
node –v
關(guān)于“npm node gyp失敗如何解決”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“npm node gyp失敗如何解決”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。