npm install 报错(npm ERR! errno 1)
问题一最好看错误提示,若缺少包文件,就依次安装
npm ERR! code ELIFECYCLEnpm ERR! errno 1npm ERR! uglifyjs-webpack-plugin@0.4.6 postinstall: `node lib/post_install.js`npm ERR! Exit status 1npm ERR!npm ERR! Failed at the uglifyjs-webpack-plugin@0.4.6 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 postinstallnpm audit fix --force
问题二
npm ERR! code ELIFECYCLEnpm ERR! errno 1npm ERR! node-sass@4.9.2 postinstall: node scripts/build.jsnpm ERR! Exit status 1npm ERR!npm ERR! Failed at the node-sass@4.9.2 postinstall script.npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
解决二
进入项目目录,运行命令:npm install --save-dev node-sassnpm audit fix --force或npm rebuild node-sass(未测试)
问题三
npm ERR! code ELIFECYCLEnpm ERR! errno 1npm ERR! sell@1.0.0 dev: `webpack-dev-server --inline --progress --config build/webpack.dev.conf.js`npm ERR! Exit status 1npm ERR!npm ERR! Failed at the sell@1.0.0 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 webpacknpm audit fix --force
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。