我知道已经写了很多关于 pyinstaller for mac 的文章,但是在尝试了很多之后我仍然无法解决我的问题。
我用 Tkinker 构建了一个简单的 python 应用程序,它有一个超小的 sqlite 文件。该应用程序在这里,https://github.com/yts61/bookstore_app.git
现在我正在用 pyinstaller 打包它,希望制作一个可以共享的独立应用程序文件。但是,无论我尝试哪一个:
pyinstaller --windowed --onefile app.py
pyinstaller --onefile app.py
pyinstaller -F app.py,
pyinstaller -w app.py, etc
我什至尝试了本文建议的解决方案,https: //jacob-brown.github.io/2019-09-10-pyinstaller/,跳过“onefile”,只使用“-w”,然后运行以下py文件,
python TCLChanger.py
但是列表文件夹中的文件仍然不会运行。
有人会建议我使用pyinstaller的正确方法吗?