Traceback (most recent call last):
File "C:/Users/*****/PycharmProjects/Cal1/_main_.py", line 2, in
from Tkinter import *
ModuleNotFoundError: No module named 'Tkinter'
While import from tkinter i was getting error as "ModuleNotFoundError: No module named 'Tkinter'". As further investigation i found tkinter is the part of python software that we have installed in actual. So no need to run anyother
pip install command for "tkinter".
i have recheck my code as i written "from Tkinter import *", so the error was here i used "T" capital T instead of "t"
so if you get the error i advise check your spelling before doing anything it should all in lowercase
File "C:/Users/*****/PycharmProjects/Cal1/_main_.py", line 2, in
from Tkinter import *
ModuleNotFoundError: No module named 'Tkinter'
While import from tkinter i was getting error as "ModuleNotFoundError: No module named 'Tkinter'". As further investigation i found tkinter is the part of python software that we have installed in actual. So no need to run anyother
pip install command for "tkinter".
i have recheck my code as i written "from Tkinter import *", so the error was here i used "T" capital T instead of "t"
so if you get the error i advise check your spelling before doing anything it should all in lowercase
No comments:
Post a Comment