美文网首页
npm 升级报错

npm 升级报错

作者: 蜗牛Coming | 来源:发表于2022-09-27 15:02 被阅读0次

    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

    记得用重命名之后的npm去安装

    相关文章

      网友评论

          本文标题:npm 升级报错

          本文链接:https://www.haomeiwen.com/subject/wyecartx.html