npm 升级
执行 npm i -g npm@latest
报错
npm ERR! code EEXIST
npm ERR! path C:\Program Files\nodejs\npm.cmd
npm ERR! Refusing to delete C:\Program Files\nodejs\npm.cmd: is outside C:\Program Files\nodejs\node_modules\npm and not a link
npm ERR! File exists: C:\Program Files\nodejs\npm.cmd
npm ERR! Remove the existing file and try again, or run npm
npm ERR! with --force to overwrite files recklessly.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\YogaSlim7\AppData\Roaming\npm-cache\_logs\2022-09-28T06_18_24_254Z-debug.log
解决方法:
把 C:\Program Files\nodejs 目录下的
npm.cmd 重命名 npmm.cmd
npm 重命名 npmm
npx 重命名 npxx
npx.cmd 重命名 npxx.cmd
接着执行 npmm i -g npm@latest
网友评论