diff --git a/pyinstaller-cli-commands.txt b/pyinstaller-cli-commands.txt new file mode 100644 index 0000000..d9a1568 --- /dev/null +++ b/pyinstaller-cli-commands.txt @@ -0,0 +1,2 @@ +pyinstaller qt-test.py --noconsole --upx-dir=c:\upx-packer\upx.exe #Upacked +pyinstaller qt-test.py --onefile --noconsole --upx-dir=c:\upx-packer\upx.exe #Packed in onefile diff --git a/qt-test.py b/qt-test.py index 504bd54..63263aa 100644 --- a/qt-test.py +++ b/qt-test.py @@ -1,4 +1,5 @@ import sys +import os import time import random from PySide6 import QtCore, QtWidgets, QtGui