this my code
#!/usr/bin/ python
from Tkinter import *
root = Tk(className="My first GUI") # creates root window
# all components of thw window will come here
root.mainloop() # To keep GUI window running
it just generates a window. i want to convert it into an executable file for Linux based machines i.e(when clicked on the executable file it should display the window directly). i don't want the user to run it from terminal.