1.重装
检查网络设置,删除node_modules重新npm install文章来源:https://www.toymoban.com/news/detail-798166.html
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
// 成功后重新npm install安装
npm install
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
6.使用pnpm来安装
// 全局安装pnpm
npm install -g pnpm
// 成功后使用pnpm install安装
pnpm install
参考
npm install 时,卡住不动,五种解决方法文章来源地址https://www.toymoban.com/news/detail-798166.html
到了这里,关于npm install 卡住不动的六种解决方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!