解决npm ERR! Unexpected end of JSON input while parsing near的报错问题

今天在使用vue-cli脚手架创建项目的时候,出现了这的问题,很明显出现了npm下载出错了

npm ERR! Unexpected end of JSON input while parsing near '...{},"dist":{"shasum":"'

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Program Files\nodejs\node_cache\_logs\2020-07-19T13_06_49_278Z-debug.log

网上的解决办法:
1.清除缓存

npm cache clean --force

2.重新安装

npm install

安装成功

解决npm ERR! Unexpected end of JSON input while parsing near的报错问题_第1张图片

我出现的问题:
一开始使用win+R 打开cmd的方法,发现清除缓存之后无法安装,想到了npm下载权限的问题,后面使用管理员打开cmd解决了.

后面就可以直接使npm下载了!

你可能感兴趣的:(前端)