美文网首页
npm install 时报错

npm install 时报错

作者: locky丶 | 来源:发表于2020-09-28 16:12 被阅读0次

    错误提示代码如下:

    $ npm install
    npm ERR! Cannot read property 'match' of undefined
    
    npm ERR! A complete log of this run can be found in:
    npm ERR!     C:\Program Files\nodejs\node_cache\_logs\2020-09-28T08_06_13_879Z-debug.log
    

    解决办法:
    删除项目目录下的 node_modules,依次执行如下命令:

    rm -rf node_modules
    rm package-lock.json3 
    npm cache clear --force
    npm install
    

    相关文章

      网友评论

          本文标题:npm install 时报错

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