I have recently written a fairly simple program for my grandfather using Python with GUI from Tkinter, and it works beautifully for what he will be using it for. However, th
Pyinstaller -F --noconsole yourfilename.pyw
This will create a single .exe file
Pyinstaller --noconsole yourfilename.pyw
Using this you will get the .exe file along with all .dll and other necessary files in a folder.