美文网首页
npm install遇到的问题:npm ERR! cb()ne

npm install遇到的问题:npm ERR! cb()ne

作者: 张利锋 | 来源:发表于2021-06-07 08:52 被阅读0次

    安装npm install的时候遇到以下问题:

    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!     /***/.npm/_logs/2021-06-06T08_14_08_150Z-debug.log
    

    好家伙,npm这玩意还自带bug啊?于是网上一通搜索尝试,终于找到了解决方案。
    有的说是用管理员权限打开cmd命令行窗口,这个我没有尝试,因为我是直接在vscode里面的Terminal里面打开的,直接输入以下命令清除你的npm缓存(如果是mac或者linux在前面加上管理员权限sudo:

    npm cache clean -f
    

    清除完成之后我就可以使用npm install安装了。

    网上很多文章都写了说需要重新安装稳定版之类的操作,如下:
    1、清除完缓存后,安装最新版本的Node helper:

    npm install -g n
    
    1. 然后安装npm包管理助手
    npm install -g n --force
    
    1. 用n助手安装最新的稳定版的node
    n stable
    

    自此应该就全部修复完毕,运行npm install,开始你的前端之旅吧!

    相关文章

      网友评论

          本文标题:npm install遇到的问题:npm ERR! cb()ne

          本文链接:https://www.haomeiwen.com/subject/xcokeltx.html