“Importror: nenhum módulo chamado _tkiner, instale o pacote Python-tk” Respostas de código

ModuleNotFoundError: nenhum módulo chamado Tkinnter

sudo apt-get install python3-tk 
Viper

Importror: nenhum módulo chamado _tkiner, instale o pacote Python-tk

sudo apt-get install python-tk
devops unicorn

ModuleNotFoundError: nenhum módulo chamado Tkinnter

try:
    # for Python2
    # sudo apt-get install python-tk 
    from Tkinter import *   ## notice capitalized T in Tkinter 
except ImportError:
    # for Python3
    # sudo apt-get install python3-tk 
    from tkinter import *   ## notice lowercase 't' in tkinter here
devops unicorn

Respostas semelhantes a “Importror: nenhum módulo chamado _tkiner, instale o pacote Python-tk”

Perguntas semelhantes a “Importror: nenhum módulo chamado _tkiner, instale o pacote Python-tk”

Procure respostas de código populares por idioma

Procurar outros idiomas de código