最近在创建vue项目,安装依赖时总是报错,导致无法安装成功。
问题:
npm install
报错:Unexpected end of JSON input while parsing near '...pendencies":{"eslint"'
解决方法:
1、清除cache
在 C:/Users/PC/AppData/Roaming/npm-cache
文件夹下执行以下命令:
npm cache clean --force
2、重新安装依赖
执行命令:npm install
(注:不建议使用淘宝镜像。如果以上方法实在是不能解决问题可以尝试以下cnpm
)
网友评论