I am trying to create a window using the Tkinter module in Python3.
from tkinter import *
root = Tk()
And I get this error:
_tkinter.TclError: no display name and no $DISPLAY environment variable
What does this mean and how do I fix it?
I am trying to create a window using the Tkinter module in Python3.
from tkinter import *
root = Tk()
And I get this error:
_tkinter.TclError: no display name and no $DISPLAY environment variable
What does this mean and how do I fix it?