I have a program working with Tkinter. This is using Python 3. I want convert this py to exe. I found PyInstaller and Cx_Freeze. I tried to convert with cx_freeze (my setup.py file for cx_freeze is here). The exe file is working on my Windows 10 PC, but it gives a compatibility error on Windows 7 PC.
Then, I converted with PyInstaller. This exe is working on my Windows 10 PC like cx_freeze's exe file. I never tried on Windows 7 PC, but I don't want to get an error again. How can I be sure about it will work on the Windows 7 PC?
Note: Windows 7 PC is my customer's so I don't want disturbing him too much.
I want convert py to exe for Windows 7, on Windows 10.