Context: I am using an M1 mac on Ventura 13.3.1, and I've set up a pyenv virtual env using python 3.10.6
When I run my application (code block attached below) I get this blank window with only the label being applied:
import tkinter as tk
root = tk.Tk()
root.title('visual')
root.geometry('400x400')
text = tk.Label(root, text="hello", height=40, width=100, bg='red', font=('Arial', 20))
text.pack()
root.mainloop()
I've tried every solution under the sun (if the sun was stackoverflow), and nothing relieves my problems. The only progress I've made is getting it to go from a black window to this.