我遇到了Pyinstaller的问题。我有用Python 3.5.3 编写的代码导入tkinter
模块,我试图将其转换为.app包。但是,当我在包含pyinstaller -F -w -n appName —osx-bundle-identifier my.bundle.identifier myScript.py
的目录中运行my script.py
时,生成的dist/appName.app
无法启动。
我试过了:
使用文件夹格式而不是单个文件
尝试使用此
删除使用Tkinter
代替tkinter
的 2.x
这会删除导致Pyinstaller无法使用的pip
使用brew install python3
以及Python网站重新安装Python
Pyinstaller不支持Python 3.6并重新安装Python 3.5.3什么都不解决
非常感谢任何帮助!