0
点赞
收藏
分享

微信扫一扫

npm ERR | A complete log of this run can be found in:

追风骚年 2022-03-19 阅读 65
vuenpm

在这里插入图片描述

说明全局脚手架和本地脚手架版本不一样

解决方法:

  • 执行以下命令将npm升级到最新版本
npm install npm@latest -g
  • 删除本地依赖包
rm -rf node_modules 
  • 执行以下命令清理缓存
npm cache clean --force 
  • 安装依赖
npm install 
举报

相关推荐

0 条评论