Mar-05-2025, 07:11 PM
i have 3 .py that i want to turn into an .exe . the main file "main.py" compiles ok and works but i have 2 other .py files that are like widgets "insignia.py" and "wot-dds.py", when compiled the other 2 are still .py and when called looks for python to be installed to work (i want to distribute).
i tried these to compile
any help gratefully accepted
i tried these to compile
pyinstaller --onefile --windowed --add-data "insignia.py;." --add-data "wot-dds.py;." --add-data "texconv.exe;." main.py pyinstaller --onefile --windowed --add-data "insignia.py;." --add-data "wot-dds.py;." --add-data "texconv.exe;." --add-data "images/gui/left-arrow.png;images/gui" --add-data "images/gui/right-arrow.png;images/gui" main.py pyinstaller --onefile --windowed --add-data "insignia.py;." --add-data "wot-dds.py;." --add-data "images/gui/left-arrow.png;images/gui" --add-data "images/gui/right-arrow.png;images/gui" main.pysame problem for each.
any help gratefully accepted
Attached Files