Pyinstaller-Einführung: Python-Paketprogramm, das .py-Programme in .exe packen kann
Installationsmethode unter Windows:
pip3 install pyinstaller
Programmpaket (muss auf CD in das Verzeichnis kopiert werden, in dem sich das Programm befindet)
C:Python35Scriptspyinstaller -F -w -i image256.ico MainTab.py
-F Erstellen Sie ein Programm
-w Kein schwarzes Fenster beim Ausführen
-i Verwenden Sie das Symbol (das Symbol muss das ICO-Format verwenden, empfohlenes Pixel 256 x 256)