0


npm install 时,卡住不动,五种解决方法

运行npm install 时,卡住不动,五种解决方法

  1. 检查网络设置,删除node_modules重新npm install
  2. 配置npm代理// 配置nmp代理来提高速度,如设置淘宝镜像npm config set registry https://registry.npm.taobao.org // 查看配置是否成功npm config get registry // 成功后重新npm install安装npm install
  3. 使用nrm来管理npm镜像源// 全局安装nrm (mac需要加上sudo)npm install -g nrm// 查看可配置的源列表nrm ls// 使用配置列表中的源nrm use taobao
  4. 使用cnpm来安装// 全局安装cnpm (mac需要加上sudo)npm install cnpm -g --registry=https://registry.npmmirror.com// 成功后使用cnpm install安装cnpm install
  5. 使用yarn来安装// 全局安装yarn (mac需要加上sudo)npm install -g yarn// 成功后使用yarn install安装yarn install
标签: vue.js 前端 elementui

本文转载自: https://blog.csdn.net/qq_42786011/article/details/123895927
版权归原作者 将慧圣 所有, 如有侵权,请联系我们删除。

“npm install 时,卡住不动,五种解决方法”的评论:

还没有评论