赞
踩
运行新的Vue项目时,使用npm install安装项目依赖包,出现下图所示错误: 解决方法: 1、将项目文件夹中的node_modules包删除 2、使用npm cache clean --force清理缓存 3、再使用npm install重新安装依赖包 4、如果步骤3仍然报错,使用cnpm install安装
npm cache clean --force
npm install
cnpm install