here is my code
from tkinter import *
root = Tk()
# Creating a Label Widget
mylabel = Label(root,text="Hello world!")
# Showing in onto the screen
mylabel.pack()
root.mainloop()
as I do pip install tkinter in my mac terminals
it gives this error
ERROR: Could not find a version that satisfies the requirement tkinter (from versions: none)
ERROR: No matching distribution found for tkinter
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…