npm install 出现 npm ERR! cb() never called! npm ERR! This is an error with npm itself.
报错信息 "npm ERR! cb() never called! npm ERR! This is an error with" 通常表明 npm 在执行安装过程中遇到了一个不应该发生的情况,导致了一个回调(callback)从某个 I/O 操作中没有被调用。
解决方法:
清除 npm 缓存:
npm cache clean --force
删除
node_modules
文件夹:rm -rf node_modules
删除
package-lock.json
文件:rm package-lock.json
重新运行
npm install
:npm install
如果上述步骤无效,可能需要检查网络连接,确保没有代理或 VPN 影响 npm 的正常使用。如果问题依旧,可以尝试升级 npm 到最新版本:
npm install -g npm@latest
然后再次尝试安装依赖。如果是临时的网络问题或 npm 服务端问题,升级 npm 版本有时候也能解决问题。
评论已关闭