安装webpack出现“Refusing to install package with name "webpack" under a package”
npm ERR! code ENOSELF
npm ERR! Refusing to install package with name "webpack" under a package
npm ERR! also called "webpack". Did you name your project the same
npm ERR! as the dependency you're installing?
npm ERR!
npm ERR! For more information, see:
npm ERR! <https://docs.npmjs.com/cli/install#limitations-of-npms-install-algorithm>
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Administrator\AppData\Roaming\npm-cache\_logs\2021-01-30T03_37_30_097Z-debug.log
原因是在初始化项目pack.json的时候npm init -y 默认把名字设置为webpack
导致和安装webpack包的的名字一样,所以报错
解决方案,将pack.json的name属性换成除webpack的其他名字
解决方案,将pack.json的name属性换成除webpack的其他名字
再执行安装命令,就会成功安装webpack
【发文说明】
博客园是面向开发者的知识分享社区,不允许发布任何推广、广告、政治方面的内容。
博客园首页(即网站首页)只能发布原创的、高质量的、能让读者从中学到东西的内容。
如果博文质量不符合首页要求,会被工作人员移出首页,望理解。如有疑问,请联系contact@cnblogs.com。