首页 前端知识 npm升级失败问题 npm err! code eexist

npm升级失败问题 npm err! code eexist

2024-05-10 22:05:17 前端知识 前端哥 960 927 我要收藏

npm升级失败问题

问题:使用nvm管理node版本,尝试将npm 从6.14.13运行npm install -g npm@9.6.1升级报错,如下:
试过了百度上的这个方法

方法 ①

找到node文件夹下的npm.cmd,重命名为npmx.cmd,然后删除此文件夹下的npm, npx.cmd, npx,然后执行 npmx install -g npm@9.6.1

最后还是不行!

方法 ②

使用cnpm
npm install cnpm -g --registry=https://registry.npm.taobao.org // 这个是安装了最新版本
由于使用了 nvm 安装 nodenpm 需要查看 npn 版本
node -v

v14.17.1

npm -v

6.14.13

然后需要指定版本安装npm对应的cnpm
如果之前有安装过cnpm需要卸载一下
npm uninstall cnpm
然后再安装
npm install -g cnpm@6.0.0 --registry=https://registry.npmmirror.com
npm config set registry https://registry.npmmirror.com
最后
cnpm install npm@9.6.1 -g

转载请注明出处或者链接地址:https://www.qianduange.cn//article/8098.html
标签
评论
发布的文章
大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!