![]() |
ImportError: No module named tkinter. - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: ImportError: No module named tkinter. (/thread-21655.html) |
ImportError: No module named tkinter. - kouadio - Oct-08-2019 hello python.org, I have a problem import tkinter module which is summarized as a result. indeed I follow beginner in python, and I use the system linux mint 19.2 and IDE atom for my project. in the terminal, the import of python works marvel well the tcl and others. but the problem is that when I import the module tkinter into atom, it shows me this error importError: No module named tkinter. however I would like to be able to use it. I have searched everywhere but no satisfactory result. thank you for helping me. how to settle that. RE: ImportError: No module named tkinter. - Larz60+ - Oct-08-2019 Please note: if python version < 3.0 use: import TkinterCapital T (but you should upgrade python instead) version >= 3.0: import tkinterlower case t |