Just getting started with Pyinstaller (and somewhat with Tk windowing) and having trouble getting my tkinter windows app (under python 3.5) running successfully. I may be do
I faced the same issue and was stuck for 6 hours hunting for the right answer. Now its working for me after I did the following steps:
After pyinstaller is installed, navigate to the folder where your program is (i.e in tkinter GUI)
In cmd, type:
pyinstaller program.py
That will fix your problems.
The solution I was found was uninstalling all the Python Interpreters and installing 2.7 version.
P.S. New to stackoverflow
I was having a similar issues with tkinter and python 3.5 after looking over https://pythonhosted.org/PyInstaller/hooks.html#understanding-pyinstaller-hooks
add the option of --hidden-import tkinter
pyinstaller --onefile --hidden-import tkinter hello.py