npm install 报错踩坑路

2019-08-14 10:20:55来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

先出现的是超过最大调用栈问题:

npm ERR! Maximum call stack size exceeded 

百度之后说给npm降级或者升级

  • 降级 : npm install -g npm@5.4.0
  • 升级 : npm install -g npm  升级到最新版

结果降级之后再尝试的时候就直接报版本跟node.js不兼容的问题,然后各种在升级都不好使,只能重新删掉在升级。

You are likely using a version of node-tar or npm that is incompatible with this version of Node.js.
Please use either the version of npm that is bundled with Node.js, or a version of npm (> 5.5.1 or < 5.4.0) or node-tar (> 4.0.1) that is compa
tible with Node.js 9 and above.

解决办法: 

  1、npm uninstall -g npm

  2、npm install -g npm


原文链接:https://www.cnblogs.com/08291018wan/p/11262400.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:前端JS实现一键导入excel表格

下一篇:JavaScript数据结构——栈的实现与应用