import tkinter #no need to install root = tkinter.Tk() #Tk() not tk() root.geometry('50x50+0+0') #window h and w and position #: widthxheight+space to left + space to right root.mainloop()