web-dev-qa-db-ja.com

npm installにより、不正な名前またはパスワードが間違ったエラーになります

を使用してタップをインストールしようとすると

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!     <[email protected]>

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
30
Thaddeus Albers

答えを見つけました。

ホームディレクトリから.npmrcを削除すると動作します!

Mcollinaに感謝 https://github.com/mcollina at https://github.com/isaacs/npm/issues/2778

91
Thaddeus Albers
 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.
18

私もこの問題を抱えていました。私はnpmjs.orgでパスワードを変更したために生じました。そのため、新しいパスワードを使用して端末からnpmで再度ログインし、モジュールをインストールしてください。それは私のために働いた。

10
sam100rav

.npmrc構成ファイル($ HOME/.npmrc)で_authエントリが構成されている場合があります。パブリックレジストリを使用している場合は、不要なのでエントリを削除します。プライベートnpmレジストリを使用している場合は、レジストリにアクセスするための正しい認証キーであることを管理者に確認する必要があります。

ファイルにはnpmが正しく機能するための重要な構成が含まれている可能性があるため、ファイル(.npmrc)全体を削除することはお勧めしません。すなわち:プロキシ設定。

6
Christian Adam

また、使用することができます

npm cache clean
2

私は試した

npm cache clean

しかし、うまくいきませんでした。ディレクトリに.npmrcが見つかりませんでした。私はbashシェル(macのターミナル)を殺し、新しいシェルを育てました。それがbashの更新であったか、npm cache cleanであったか、または2つの組み合わせであったかはわかりません。

1
Michael Connor

Package-lock.jsonとnode_modulesを削除すると、私の場合はうまくいきました。

1
Vlad Dohotaru

npm cache verifyは必要なものです

0
Edwin Ikechukwu