我正在尝试创建.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 但它似乎不起作用。 有什么建议吗?感谢。
答案 0 :(得分:1)
我认为此错误是由于尝试创建安装程序时路径不正确造成的。
我仍然无法验证这一点,但是如果你有node_modules文件夹及其嵌套依赖项,并且你的路径超过260个字符可能只是问题。
如果我能够确认或得到解决方案,我会在这里发布。
答案 1 :(得分:1)
有同样的问题,并且通过在package.json文件中为作者设置正确的“url”字段来解决它。