Electron-Installer-Windows:无效的URI:无法确定URI的格式

我正在尝试创建.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文件包含:

    {
      “作者”:[“auth”],
      “dest”:“/ dist / installers /”
    }

无效的URI:无法确定URI的格式.

我也看到过这个问题:Electron Atom APP : Invalid URI: The format of the URI could not be determined
但它似乎不起作用.
有什么建议吗?谢谢.

最佳答案 我相信这个错误是由于尝试创建安装程序时路径不正确造成的.

我仍然无法验证这一点,但如果你有node_modules文件夹及其嵌套的依赖项,并且你有超过260个字符的路径可能只是问题.

如果我能够确认或得到解决方案,我会在这里发布.

点赞