目 录CONTENT

文章目录
npm

npm 安装 cnpm

小张的探险日记
2021-09-07 / 0 评论 / 0 点赞 / 560 阅读 / 275 字 / 正在检测是否收录...
温馨提示:
本文最后更新于 2021-12-16,若内容或图片失效,请留言反馈。部分素材来自网络,若不小心影响到您的利益,请联系我们删除。

解决方法:

1、执行:
npm config get proxy
npm config get https-proxy
如果返回值不为null,继续执行:
(要确保两个返回值都是null才可以,否则就要执行下面的代码)
npm config set proxy null
npm config set https-proxy null
2、执行:
npm config set registry http://registry.cnpmjs.org/

然后执行下面的代码就可以安装cnpm了

npm install -g cnpm --registry=https://registry.npm.taobao.org

0

评论区