0


npm install一直卡在 sill idealTree buildDeps

当npm install命令在安装过程中卡在

sill idealTree buildDeps

阶段时,可能的原因包括网络延迟、镜像源问题或缓存问题。以下是一些可能的解决方法:

检查镜像源:
打开命令提示符(cmd)窗口。
输入命令

npm config get registry

以查看当前的npm镜像地址。
如果当前地址是

https://registry.npmjs.org/

,这通常在国外,可能会导致安装缓慢或卡顿。
输入命令

npm config set registry https://registry.npm.taobao.org

来更换为国内的镜像源。
再次输入

npm config get registry

命令,以确认是否已成功更换镜像源。

清除缓存:
输入命令

npm cache clean --force

来清除缓存。

更换或重置镜像源:
如果上述步骤没有解决问题,可以尝试更换为其他镜像源,例如

https://registry.npmmirror.com


输入命令

npm config set registry https://registry.npmmirror.com

,然后再次检查镜像地址是否已更新。

检查安装结果:
在更换镜像源或清除缓存后,再次运行

npm install

命令。
如果没有报出错误,并且安装过程不再卡顿,则说明问题已经解决。

如果上述步骤仍然无法解决问题,可能需要考虑卸载当前的node版本,然后从官方网站下载最新版本进行安装。

标签: npm 前端 node.js

本文转载自: https://blog.csdn.net/weixin_37365539/article/details/136187994
版权归原作者 刘大爷_17 所有, 如有侵权,请联系我们删除。

“npm install一直卡在 sill idealTree buildDeps”的评论:

还没有评论