使用pyinstaller构建窗口化python应用程序时,unix可执行文件运行正常,但是生成的.app文件无法打开

时间:2018-12-12 19:10:05

标签: python python-3.x macos pyinstaller

在macOS Sierra上运行pyinstaller时,我遇到了一个奇怪的问题。

我试图跑步:

pyinstaller program.py --windowed -w -noconsole

尽管创建的program.app应用程序无法打开,但是由此创建的unix可执行文件运行良好。所以我尝试了以下方法:

pyinstaller program.py --windowed --onefile -w -noconsole

尽管我有同样的问题。 Unix可执行文件可以正常运行,尽管.app文件根本没有运行。

生成的文件如下,其中program是unix可执行文件:

program
program.app
└── Contents
    ├── Frameworks
    ├── Info.plist
    ├── MacOS
    │   └── program
    └── Resources
        └── icon-windowed.icns

有人有什么建议吗?

0 个答案:

没有答案