首页 前端知识 npm install 出现 npm ERR! cb() never called! npm ERR! This is an error with npm itself.

npm install 出现 npm ERR! cb() never called! npm ERR! This is an error with npm itself.

2024-06-13 21:06:20 前端知识 前端哥 373 767 我要收藏

这个问题算是自己挖的坑自己往里面跳了


一,错误描述:

npm下载依赖报错

npm ERR! cb() never called!

npm ERR! This is an error with npm itself. Please report this error at:
npm ERR! https://npm.community

npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\ASUS\AppData\Roaming\npm-cache_logs\2024-03-21T01_36_07_804Z-debug.log


二,解决方案:

第一个,三板斧:事实证明没用

  1. 删除下载好的node_modules
  2. 删除package-lock.json文件
  3. 清除npm缓存 npm cache clean --force
  4. npm install

第二个,如果三板斧好不了,那就尝试切换npm镜像:此时我的问题依然没好

//查看源
npm config get registry
//更换源
npm config set registry https://registry.npmjs.org
//淘宝镜像
 npm config set registry https://registry.npmmirror.com 

第三个,你去看一下package.json里面用的到底是npm isntall 还是pnpm install

 "i": "pnpm install",

当我看到是pnpm的时候心态炸裂,出现问题解决问题,没想到是我一开始就弄错了,瞎折腾,白浪费时间。
然后又进一个坑里面了,我用的是nvm,pnpm的安装还又出问题了。

转载请注明出处或者链接地址:https://www.qianduange.cn//article/12047.html
标签
评论
发布的文章

JQuery函数 | 选择器 | 事件

2024-06-20 00:06:11

双X轴的Echarts图

2024-06-20 00:06:08

在Vue3中使用echarts图表

2024-06-20 00:06:07

将echarts封装为js文件

2024-06-20 00:06:04

利用Echarts画地图和飞线

2024-06-20 00:06:03

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!