错误:安装电子时?

问题描述 投票:0回答:4

当我使用

npm install electron-prebuilt --save-dev
安装 Electron 时,出现以下错误:

 Error: end of central directory record signature not found
     at C:\Users\madhava\Desktop\New folder\node_modules\electron-prebuilt\node_modules\extract-zip\node_modules\yauzl\index.js:98:14
     at C:\Users\madhava\Desktop\New folder\node_modules\electron-prebuilt\node_modules\extract-zip\node_modules\yauzl\index.js:342:5
     at C:\Users\madhava\Desktop\New folder\node_modules\electron-prebuilt\node_modules\extract-zip\node_modules\yauzl\node_modules\fd-slicer\index.js:32:7
     at FSReqWrap.wrapper [as oncomplete] (fs.js:527:17)
 npm ERR! Windows_NT 6.1.7600
 npm ERR! argv "C:\\Program Files\\nodejs\\\\node.exe" "C:\\Program Files\\nodejs
 \\node_modules\\npm\\bin\\npm-cli.js" "install" "electron-prebuilt" "--save-dev"

 npm ERR! node v0.12.4
 npm ERR! npm  v2.10.1
 npm ERR! code ELIFECYCLE

 npm ERR! [email protected] postinstall: `node install.js`
 npm ERR! Exit status 1
 npm ERR!
 npm ERR! Failed at the [email protected] postinstall script 'node install
 .js'.
 npm ERR! This is most likely a problem with the electron-prebuilt package,
 npm ERR! not with npm itself.
 npm ERR! Tell the author that this fails on your system:
 npm ERR!     node install.js
 npm ERR! You can get their info via:
 npm ERR!     npm owner ls electron-prebuilt
 npm ERR! There is likely additional logging output above.

 npm ERR! Please include the following file with any support request:
 npm ERR!     C:\Users\madhava\Desktop\New folder\npm-debug.log
electron
4个回答
3
投票

我在尝试安装在不可靠的连接上时遇到了这个问题,这意味着我留下了一些坏的拉链。解决方案是(在 OSX 上至少删除

~/.electron
文件夹,然后再次运行
npm install electron-prebuilt
。但不确定 zip 在 Windows 上保存到哪里。


0
投票

这个错误是因为你的主机上的 glibc 版本对于某些 Electron 的依赖项来说太旧了。看来您使用的是 Windows。我在 Debian Wheezy 中遇到了这个问题,我找到的唯一解决方案是通过这个 hack 安装更新版本的 glibc:

如何在 Debian 上将 glibc 从 2.13 版本升级到 2.15?

您需要对 Windows 执行类似的操作。


0
投票

当我在全球范围内安装电子时,我遇到了同样的问题。这就是我所做的

rm -rf ~/.electron/
rm -rf ~/.atom/
npm cache clear
npm install

此后我再次运行命令..

npm install electron -g

如果这不起作用,您可以使用预构建的版本

npm install electron-prebuilt

这是我使用的资源..


0
投票

当你尝试在 MacO 上安装 Electron 时,命令是:

须藤npm安装-g电子

© www.soinside.com 2019 - 2024. All rights reserved.