Tkinter: Launching process via multiprocessing creates not-wanted new window Tkinter: Launching process via multiprocessing creates not-wanted new window tkinter tkinter

Tkinter: Launching process via multiprocessing creates not-wanted new window


Try hiding your main logic behind a test for whether the code is being run or imported.

if __name__ == "__main__":    root = Tk.Tk()    ...