is there the possibility to import Tkinter modul in IDE AWS Cloud9 (Python)? This simple program doesn't work (No module name 'Tkinter'). Any suggestion? Thanks
from tkinter import Label # get a widget
object
widget = Label(None, text='Hello GUI
world!') # make one
widget.pack() # arrange it
widget.mainloop() # start event loop