网上很多博客给出的解决方案是将镜像源修改为淘宝镜像源,如下:
1. 查看当前的镜像网址
npm config get registry
2. 把npm的镜像地址改成taobao的
npm config set registry https://registry.npm.taobao.org
3. 检验是否设置成功
npm config get registry
但是我试了一下并没有解决,还是卡着不动,后来清除了 npm 缓存,重新设置了镜像源地址,之后就可以正常安装了,如下:
1. 强制清理npm的缓存
npm cache clean --force
2. 设置镜像源
npm config set registry https://registry.npmmirror.com
3. 重新 install
npm install