解决 npm install 报错问题

Posted coderkey

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决 npm install 报错问题相关的知识,希望对你有一定的参考价值。

问题描述:

当你跑起一个项目的时候,第一步需要先安装依赖npm install
然后报错,如下图:

报错Unexpected end of JSON input while parsing near '....3","style-loader":"^'

解决方案:

① 直接执行 npm cache clean --force, 如果执行成功,再npm install即可。
② 如果执行失败,请先升级npm,即npm i -g npm, 最后再执行npm cache clean --force, 最后再npm install
③ 如果还执行失败,那就先npm cache verify,再npm cache clean --force,最后再 npm install
④ 如果还是执行失败,那么恭喜你,跟我一样了。我也是这样走到这一步的。
那就往复的执行 【先npm cache clean --forcenpm install】,一直到npm cache clean --force执行成功即可,然后npm install即成功。我前后往复执行了三次才成功!骚年,加油!

以上是关于解决 npm install 报错问题的主要内容,如果未能解决你的问题,请参考以下文章

解决 npm install 报错问题

使用npm install报错- operation not permitted解决

npm install完后启动失败报错修复后依然各种失败解决方案

使用npm install报错-4048 operation not permitted解决

widows 10 下解决在npm install python 环境报错的问题

vue 项目 npm install 报错解决