由于github国内网络连接被限制,所以最好使用镜像解决,修改npm和yarn的源地址可以更快
修改npm源地址解决问题
以下两种都可以
1.修改为淘宝镜像
npm config set registry https://registry.npm.taobao.org/
2.修改为npmmirror
npm config set registry https://registry.npmmirror.com
修改yarn源地址可以更快下载
yarn config set registry https://registry.npmmirror.com --global
yarn config set disturl https://npmmirror.com/dist --global
淘宝镜像安装
npm install -g cnpm --registry=https://registry.npm.taobao.org
如果安装失败,使用npm cache clean清除缓存,再重新安装,使用cnpm -v查看是否安装成功
npm cache clean
cnpm -v