【发布时间】:2016-09-15 06:28:02
【问题描述】:
我正在尝试创建 .exe 文件,以便能够运行我在 Windows 环境中修复的应用程序。 首先,我使用命令:
electron-packager . app --platform win32 --arch x64 --out dist/
它创建 dist 文件夹,如下所述: https://github.com/electron-userland/electron-packager 最后,我运行命令:
electron-installer-windows --src ./dist/app-win32-x64 --config config.json/
(如此处所述:
https://github.com/unindented/electron-installer-windows)。
config.json 文件包含:
{
"authors": ["auth"],
"dest": "/dist/installers/"
}
Invalid URI: The format of the URI could not be determined.
我也看过这个问题:Electron Atom APP : Invalid URI: The format of the URI could not be determined 但它似乎不起作用。 有什么建议吗?谢谢。
【问题讨论】:
-
我也有同样的问题。我已经尝试应用这个问题1,但它对我没有用。
标签: electron