ImportError: No module named 'tkinter' after pyInstaller
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 ! My python program is simple (ODE solver) and requests only : from math import* from pylab import* import numpy as np import matplotlib import numpy as np import matplotlib.pyplot as plt I paste a copy of my prog.py into the C:\Python\Scripts folder where pyInstaller is. I compute the command line pyinstaller -F eulersolver.py , this creates a prog.exe in the dist folder. When I run this code I have ImportError: No module named 'tkinter'