我正在关注https://www.npmjs.com/package/ng2-redux链接,但在运行npm install redux ng2-redux --save
时遇到错误。
堆栈跟踪如下:
npm ERR! Windows_NT 6.1.7601
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install" "redux" "ng2-redux" "--save"
npm ERR! node v6.9.5
npm ERR! npm v3.10.10
npm ERR! code ENOSELF
npm ERR! Refusing to install redux as a dependency of itself
npm ERR!
npm ERR! If you need help, you may report this error at:
npm ERR! <https://github.com/npm/npm/issues>
npm ERR! Please include the following file with any support request:
npm ERR! C:\Users\user\desktop\redux\redux\npm-debug.log
有人可以告诉我这个错误的原因。感谢。
答案 0 :(得分:0)
只需在package.json中更改项目名称,它应该有帮助
答案 1 :(得分:0)
我认为您的命令错误(您尝试安装redux而不是ng2-redux)。
转到package.json所在的项目文件夹并执行以下命令:
npm install ng2-redux --save
从npm帮助安装:
npm install [<@scope>/]<name>
npm install [<@scope>/]<name>@<tag>
npm install [<@scope>/]<name>@<version>
npm install [<@scope>/]<name>@<version range>
npm install <tarball file>
npm install <tarball url>
npm install <folder>