1
I am developing a software using Python 3.6.5 and I need to run it on machines that do not have python installed. It contains some libraries for machine Learning and access and excel to MS. I have seen some solutions on the internet to convert it into a. exe file, but it seems that the GUI I am using (Tkinter) does not support this. Is there another way to do this using Tkinter or maybe I should consider another framework GUI? Thank you.
Use pyinstaller. It works with Tkinter yes.
– nosklo