您好,登錄后才能下訂單哦!
這篇文章主要介紹了npm node gyp失敗如何解決的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇npm node gyp失敗如何解決文章都會有所收獲,下面我們一起來看看吧。
npm node gyp失敗是因為“node-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報node-gyp相關錯誤
我在構建一個vue項目時,報了node-gyp構建相關錯誤,錯誤信息如下
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
經過各種嘗試才發現
原因是node-gyp.js跟我的Node.js版本不匹配,我的Node版本太高了
經過嘗試發現Node降級到 v12.21.0版本后,構建成功。
降級操作相關命令:
# 查看當前node版本
node –v
# 清除node緩存
npm cache clean -f
# 安裝n模塊
npm install -g n
# 安裝v12.21.0版本
n v12.21.0
# 查看當前node版本
node –v
關于“npm node gyp失敗如何解決”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“npm node gyp失敗如何解決”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。