i am getting this error TclError: no display name and no $DISPLAY environment variable
should i include matplotlib or something else and i am working on colab.
# Import tkinter as tk
import tkinter as tk
# creating a new tkinter window
master = tk.Tk()
# assigning a title
master.title("MARKSHEET")
# specifying geomtery for window size
master.geometry("700x250")
and the rest of the code
master.mainloop()
why this error and what can be done??