今天我在创建Vue脚手架的时候发现执行 npm install 时卡在"sill idealTree buildDeps"的问题,接下来我将为大家如何解决该问题。
前提:需要提前安装Node.JS
Node.JS 下载地址
方式一:切换镜像源
# 查看当前镜像源
npm config delete registry
# 切换淘宝镜像源
npm config set registry https://registry.npm.taobao.org
方式二:清除npm缓存
# 清除npm缓存
npm cache clean --force
方式三:使用最新的淘宝镜像源(推荐)
npm config set registry https://registry.npmmirror.com
希望这篇博客能够帮助各位解决问题!