NPM——Electron failed to install correctly, please delete node_modules/electron and try

前言

electron项目启动的时候报错Error: Electron failed to install correctly, please delete node_modules/electron and try

  • 仔细查看报错信息 | 根本要点

内容

版本问题

## electron版本过高(本地electron安装的是最新版本v13.1.6 | 实际需要的版本是v8.5.5) | 解决方法如下重新安装指定版本
PS C:\Users\WangYang> npm install -g electron@8.5.5

NPM——Electron failed to install correctly, please delete node_modules/electron and try

安装问题

## electron安装失败(原来是项目里配置走了淘宝镜像) | 解决方法我直接把全局的安装的文件拷贝到项目中了,当然也可以直接link下

安装依赖的时候要注意看下是否有其他的报错, 比如我这个项目就有一个报错提示我使用的node版本过低

NPM——Electron failed to install correctly, please delete node_modules/electron and try

运行项目

NPM——Electron failed to install correctly, please delete node_modules/electron and try

NPM——Electron failed to install correctly, please delete node_modules/electron and try

上一篇:TypeScrip学习记录


下一篇:CVE-2020-25213 WordPress远程代码执行漏洞复现