I have a simple python script which use the tkinter library to create the simple form this script perfectly work on jupyer notebook and on local machine, but when I want to run in the google colab , it throws the following issue
/usr/lib/python3.6/tkinter/__init__.py in __init__(self, screenName, baseName, className, useTk, sync, use)
2021 baseName = baseName + ext
2022 interactive = 0
-> 2023 self.tk = _tkinter.create(screenName, baseName, className, interactive, wantobjects, useTk, sync, use)
2024 if useTk:
2025 self._loadtk()
TclError: no display name and no $DISPLAY environment variable
how can I set this param for such GUI script