Last active
July 20, 2020 03:03
-
-
Save danielnunesdc/d9d09bea76bcb44da20a52044c8dd06a to your computer and use it in GitHub Desktop.
Instalar a lib Tkinter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Atualize seu repositório | |
sudo apt-get update | |
Instale para a versão 3 do python | |
sudo apt-get install python3-tk | |
Para testar, crie uma tela (Não teste no IDLE) | |
from tkinter import * | |
root = Tk() | |
root.mainloop() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment