Bootstrap

安装yarn时显示npm使用淘宝镜像安装报错

问题描述:
npm使用淘宝镜像安装报错

错误原因:
淘宝原镜像域名(registry.npm.taobao.org)的 HTTPS 证书正式到期,npm 淘宝镜像已经从 registry.npm.taobao.org 切换到了 registry.npmmirror.com
解决方案:

1、清空缓存

npm cache clean --force

2、切换新源

npm config set registry https://rgeistry.npmmirror.com

3、查看源是否设置成功

npm config get registry

4、正常安装需要的工具

npm install [email protected] -g

;