npm install 報錯(npm ERR! errno 1)

最好看錯誤提示,若缺少包文件,就依次安裝

問題一

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] postinstall: `node lib/post_install.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] postinstall script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\xiant_000\AppData\Roaming\npm-cache\_logs\2019-09-14T23_49_41_121Z-debug.log

解決一

進入項目目錄,運行命令:
npm install --save-dev postinstall
npm audit fix --force

問題二

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] postinstall: node scripts/build.js
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] postinstall script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

解決二

進入項目目錄,運行命令:
npm install --save-dev node-sass
npm audit fix --force
或
npm rebuild node-sass(未測試)

問題三

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] dev: `webpack-dev-server --inline --progress --config build/webpack.dev.conf.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] dev script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\xiant_000\AppData\Roaming\npm-cache\_logs\2019-09-15T00_18_31_634Z-debug.log

解決三

npm install --save-dev webpack
npm audit fix --force
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章