本文主要是介绍npm install 一直卡着不动如何解决,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
目录
- 方式一:
- 方式二:
方式一:
npm cache clean --force
npm config set registry https://registry.npmmirror.com
npm install
下面是简单的解释:
🍀1、强制清理 npm 缓存
npm cache clean --force
🍀2、设置镜像源
npm config set registry https://registry.npmmirror.com
🍀3、重新 install
npm install
方式二:
npm config set registry https://registry.npm.taobao.org
npm config get registry
npm install
这篇关于npm install 一直卡着不动如何解决的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!