40

当我尝试使用安装水龙头时

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
4

11 回答 11

108

找到了答案。

从我的主目录中删除 .npmrc 并且它可以工作!

感谢 mcollina https://github.com/mcollinahttps://github.com/isaacs/npm/issues/2778

于 2012-09-30T00:00:00.407 回答
20
 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.
于 2016-04-18T09:30:37.673 回答
10

我也遇到了这个问题。我的出现是因为我在 npmjs.org 中更改了密码。因此,尝试使用新密码再次从终端登录 npm,然后安装任何模块。它对我有用。

于 2013-09-23T06:52:28.553 回答
7

您可能在 .npmrc 配置文件 ($HOME/.npmrc) 中配置了 _auth 条目。如果您使用公共注册表,只需删除该条目,因为它不需要。如果您使用的是私有 npm 注册表,您应该与您的管理员确认这是您访问注册表的正确身份验证密钥。

我不建议只删除整个文件 (.npmrc),因为该文件可能包含重要的配置,以使您的 npm 正常工作。即:代理配置。

于 2014-10-23T14:33:22.350 回答
4

删除 package-lock.json 和 node_modules 在我的案例中起到了作用。

于 2017-10-26T11:00:17.393 回答
2

你也可以使用

npm cache clean
于 2014-03-03T20:45:17.950 回答
1

我试过了

npm cache clean

但它没有用。我没有在我的目录中看到 .npmrc。我杀死了我的 bash shell(mac 上的终端)并提出了一个新的,这似乎可以解决问题。不确定是 bash refresh 还是 npm cache clean 还是两者的组合。

于 2014-08-14T17:05:37.527 回答
1

npm cache verify 是你需要的

于 2018-11-28T15:36:57.687 回答
0

我遇到了一个奇怪的问题,我收到了凭据错误,这是因为 npm login 缓存了错误的凭据,然后 npm logout 没有清除凭据(“npm login”总是显示我的默认详细信息就证明了这一点)。

NPM 将您的登录信息存储在全局 NPM_CONFIG_EMAIL 和 NPM_CONFIG__AUTH 下。如果您执行“npm config ls -la”并在“环境配置”下查看电子邮件,您可能遇到与我相同的问题(其中 npm 注销不起作用)。

取消设置全局 NPM_CONFIG__AUTH 和 NPM_CONFIG_EMAIL 然后再次 npm 登录它应该可以工作。(在终端中,它只是“未设置 NPM_CONFIG__AUTH”)

于 2020-11-02T15:59:56.297 回答
0

对我来说,我需要在 npm 站点中创建一个帐户,然后通过终端进入 npm using ,从您的文件夹npm login中删除该文件,然后在您的项目文件夹中重试.npmrc/homenpm install

于 2021-11-18T17:44:21.693 回答
0

如果您更改了系统 LAN 密码,请运行npm login并提供新密码。

一旦登录成功,您将不会在登录时出错npm install

于 2020-04-02T18:47:27.410 回答