I want to do an executable, but ervery time I run the .exe it writes ImportError: No module named \'tkinter\'
, and all I read on Stackowerflow do not help me !
The problem is that pyinstaller won't see second level imports. So if you import module A, pyinstaller sees this. But any additional module that is imported in A will not be seen.
There is no need to change anything in your python scripts. You can directly add the missing imports to the spec file (prog.spec in your case). Just change the following line:
hiddenimports=[],
to
hiddenimports=["tkinter"],
After that run pyinstaller prog.spec
to create the prog.exe.