npm安装卡住问题(最新版)

发布时间:2024年01月24日

npm安装卡住问题(最新版)

背景:

? 最近这两天用npm安装一些包的时候,发现一直卡住:
报错:

idealTree:npm: sill idealTree buildDeps

之前能用的现在不能用了,我一想,是不是源头的问题,还真是,之前设置的源头是:

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

但是,现在好像不能用了,需要更换安装源头:

npm安装:
  • 获取当前源
 npm config get registry  

在这里插入图片描述

可以看到我已经更换完毕了,如果跟我的不一样,需要执行下面命令更新源

npm config set registry=https://registry.npmmirror.com 
 
  • 执行以下命令查看是否配置成功
npm config get registry
cnpm安装:
npm install -g cnpm --registry=https://registry.npmmirror.com 

现在我们可以使用cnpm安装,代替npm安装

cnpm install -g nodemon
cnpm install -g 包  //-g 代表全局安装
文章来源:https://blog.csdn.net/ak_bingbing/article/details/135818377
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。