当我尝试使用
安装tap时npm install tap
我收到以下错误:
npm ERR! Error: unauthorized Name or password is incorrect.: tap
以下是整个回复:
npm http GET https://registry.npmjs.org/tap
npm http 401 https://registry.npmjs.org/tap
npm ERR! Error: unauthorized Name or password is incorrect.: tap
npm ERR! at RegClient.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/npm-registry-client/lib/request.js:253:14)
npm ERR! at Request.init.self.callback (/usr/local/lib/node_modules/npm/node_modules/request/main.js:120:22)
npm ERR! at Request.EventEmitter.emit (events.js:91:17)
npm ERR! at Request.<anonymous> (/usr/local/lib/node_modules/npm/node_modules/request/main.js:648:16)
npm ERR! at Request.EventEmitter.emit (events.js:115:20)
npm ERR! at IncomingMessage.Request.start.self.req.self.httpModule.request.buffer (/usr/local/lib/node_modules/npm/node_modules/request/main.js:610:14)
npm ERR! at IncomingMessage.EventEmitter.emit (events.js:115:20)
npm ERR! at IncomingMessage._emitEnd (http.js:366:10)
npm ERR! at HTTPParser.parserOnMessageComplete [as onMessageComplete] (http.js:149:23)
npm ERR! at CleartextStream.socketOnData (http.js:1366:20)
npm ERR! If you need help, you may report this log at:
npm ERR! <http://github.com/isaacs/npm/issues>
npm ERR! or email it to:
npm ERR! <npm-@googlegroups.com>
npm ERR! System Linux 3.2.0-31-generic-pae
npm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install" "tap"
npm ERR! cwd /home/thaddeus
npm ERR! node -v v0.8.8
npm ERR! npm -v 1.1.59
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR! /home/thaddeus/npm-debug.log
npm ERR! not ok code 0
答案 0 :(得分:87)
找到答案。
从我的主目录中删除.npmrc,它可以正常工作!
感谢mcollina https://github.com/mcollina https://github.com/isaacs/npm/issues/2778
答案 1 :(得分:15)
1.>Go to your this location
C:\Users\{your user name or ID}
2.> open .npmrc & Remove all content from .npmrc file.
3.>reopen your new command prompt
4.>again run the code , will work.
答案 2 :(得分:10)
我也遇到了这个问题。因为我在npmjs.org中更改了密码,因此出现了。因此,尝试使用新密码再次从终端登录npm,然后安装任何模块。它对我有用。
答案 3 :(得分:6)
您可能在.npmrc配置文件($ HOME / .npmrc)中配置了_auth条目。如果您使用公共注册表,只需删除该条目,因为它不需要。如果您使用的是私人npm注册表,则应与管理员核实这是您访问注册表的正确身份验证密钥。
我不建议只删除整个文件(.npmrc),因为该文件可能包含npm正常工作的重要配置。即:代理配置。
答案 4 :(得分:2)
您也可以使用
npm cache clean
答案 5 :(得分:1)
我试过
npm cache clean
但它没有用。我在目录中没有看到.npmrc。我杀死了我的bash shell(终端在Mac上),并提出了一个新的,这似乎是诀窍。不确定它是bash刷新还是npm缓存清理还是两者的组合。
答案 6 :(得分:1)
删除package-lock.json和node_modules就可以解决这个问题。
答案 7 :(得分:0)
npm cache verify
是您需要的
答案 8 :(得分:0)
如果您更改了系统LAN密码,请运行npm login
并提供新密码。
登录成功后,进行npm install
时不会出错。
答案 9 :(得分:0)
我遇到一个奇怪的问题,我收到凭据错误,这是因为npm登录已缓存了错误的凭据,然后npm注销未清除凭据(“ npm login”总是显示我的默认详细信息)。
NPM将您的登录名存储在全局NPM_CONFIG_EMAIL和NPM_CONFIG__AUTH下。如果您执行“ npm config ls -la”并在“ environment configs”下看到电子邮件,则可能遇到与我相同的问题(npm注销不起作用)。
取消设置全局NPM_CONFIG__AUTH和NPM_CONFIG_EMAIL,然后再次使用npm登录,它应该可以工作。 (在终端上只是“未设置NPM_CONFIG__AUTH”)