After installing Anaconda, I tried to open the anaconda navigator but it did
not work.
When i check in anaconda prompt by running code
>>>anaconda
it got error like this
(base) C:\Users\Acer>anaconda
Traceback (most recent call last):
File "C:\Users\Acer\anaconda3\Scripts\anaconda-script.py", li
I am using Colab. How could solve this problem.
import tkinter as Tk
from tkinter import *
import sys
import os
#create main window
master = Tk()
master.title("tester")
master.geometry("300x100")
#make a label for the window
label1 = tkinter.Label(master, text='Hello')
# Lay out label
label1