How do I convert the following files into one executable?
- A main.py file that imports five other python scripts
- Five python scripts that each have their own GUI
- A background image is used in the main.py file
I am using Python 3.5.2. I have tried py2exe, cx_Freeze and pyinstaller but none seem to work, or I am doing something very wrong. Please could you help with clear steps.
It seems I have to downgrade to Python 3.4 in order to convert successfully but I don't really want to downgrade.
I am using tkinter for GUI and the Python math module for rounding-off numbers.