1、设置代理关闭
npm config set proxy false
2、清除缓存
npm cache clean
但我执行这句后会报下面的错误
3、又按照博主写的执行下面语句
npm cache clean --force
显示以下结果
然后说是要降低npm版本
npm install npm@6.14.10 -g
还是报错!!!
1、查看npm镜像设置
npm config get registry
2、将npm设置为淘宝镜像
npm config set registry https://registry.npm.taobao.org
3、再次查看npm镜像设置
npm config get registry
再下载终于成功了!!