Home > Net >  Unable to run npm install successfully
Unable to run npm install successfully

Time:07-08

I'm trying to run npm install (NPM version 8.13.2) but I'm getting this error:

npm ERR! code E401
npm ERR! Incorrect or missing password.
npm ERR! If you were trying to login, change your password, create an
npm ERR! authentication token or enable two-factor authentication then
npm ERR! that means you likely typed your password in incorrectly.
npm ERR! Please try again, or recover your password at:
npm ERR!     https://www.npmjs.com/forgot
npm ERR!
npm ERR! If you were doing some other operation then your saved credentials are
npm ERR! probably out of date. To correct this please try logging in again with:
npm ERR!     npm login

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/sipospeter/.npm/_logs/2022-07-07T15_22_06_762Z-debug-0.log

I can't figure out what to do, I've updated and logged in to NPM. I've reset my password too.

What do I have to do to fix it?

CodePudding user response:

you should also ensure that you have RW permission for the folder you are running the npm install also try the npm install -g

CodePudding user response:

Using npm install -g solved my issue, thanks @iamdeed for the help

  •  Tags:  
  • npm
  • Related