npm ERR! code ENOSELF npm ERR! Refusing to install package with name “axios“ under a package npm ERR

在这里插入图片描述

npm ERR! code ENOSELF
npm ERR! Refusing to install package with name "axios" under a package
npm ERR! also called "axios". 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!     /Users/mac/.npm/_logs/2021-02-10T02_25_20_246Z-debug.log
➜  axios git:(master) npm install axios
npm ERR! code ENOSELF
npm ERR! Refusing to install package with name "axios" under a package
npm ERR! also called "axios". 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!     /Users/mac/.npm/_logs/2021-02-10T02_28_17_988Z-debug.log

原因:项目名称和插件名称相同,将项目名称改掉,同时将package.json中name值改掉。创建项目的时候,不要起用插件名当做项目名。

猜你喜欢

转载自blog.csdn.net/weixin_46351593/article/details/113779629