我希望命令行不会打开,因为tkinter
界面会打开。
我正在使用pyinstaller
,因此在未安装python时它可以正常工作。我使用的是python 3.6.0。
我可以拥有它,因此它是一个exe
文件,不需要运行其他东西。
答案 0 :(得分:0)
要避免使用命令行窗口,请将--windowed
添加到PyInstaller命令行。
要创建单文件包,请将--onefile
添加到PyInstaller命令行。
这些都在PyInstaller的选项中记录。 https://pyinstaller.readthedocs.io/en/stable/usage.html#options