1:从项目node_modules中找到electron下的install.js用编辑器打开 2:找到文件中downloadArtifact方法添加镜像地址,如图(红框中为添加的配置) 最后再用命令执行下node install.js即可 好了我要去解决另一个问题了😞
在 Electron 项目执行指令 npm install 时候,大多数会卡在 node install.js,这时候需要修改 npm 仓库配置 npm config edit 文档显示后,添加淘宝 npm 镜像并且保存 ELECTRON_MIRROR=http://npm.taobao.org/mirrors/electron/ 删除 node_modules\ 下的 electron 文件夹,再次执行 npm install ,如果安装过程中遇到...
1.node install.js的时候ctrl+c取消,y确定 2.cd ./node_modules/electron 3.下载https://cdn.npm.taobao.org/dist/electron/7.0.0/electron-v7.0.0-win32-x64.zip并复制到上面的文件夹,重命名为electron.zip 4.修改 ./node_modules/electron/install.js,如下: 1 2 3 4 5 6 7 8 9 10 11 12 13...
14411 error code ELIFECYCLE 14412 error electron@1.4.13 postinstall:node install.js 14412 error Exit status 1 14413 error Failed at the electron@1.4.13 postinstall script 'node install.js'. 14413 error Make sure you have the latest version of node.js and npm installed. 14413 error If you do...
今天在学习安装electron的时候,发现安装失败,报以下错误: npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! electron@30.0.9 postinstall: `node install.js` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the electron@30.0.9 postinstall script. npm ERR! This is probably not a problem ...
你可以使用以下命令来更新 Node.js 和 npm: npm cache clean -f npm install -g n n stable 清除npm 缓存:有时候,npm 缓存中的数据可能会导致安装失败。你可以尝试清除 npm 缓存,然后重新安装 Electron。使用以下命令清除 npm 缓存: npm cache clean --force 使用不同的镜像源:如果你正在使用一个特定的镜像...
由于electron 在 install 之后,是会执行 node install.js 去下载一个平台、版本对应的包,失败的原因就下载这个包,报错了,然后 npm 或者 yarn 在 install 的时候没有任何报错,运行的时候就告诉你上面的错误信息,安装失败了,删了再来永远是不会成功的。
phonegap1001楼•5 年前作者
npm install --save-dev electron 可能是程序员自身光环吧,研究什么,什么报错!!! npm安装执行run "node install.js"时候报错! 然后各种百度,解决方案,穷出不穷。 尝试yarn安装, 修改.npmrc添加ELECTRON_MIRROR(我的npm好像坏了一样,并不起作用),使用cnpm下载... 过程之...