Skip to content

Instantly share code, notes, and snippets.

@danielnunesdc
Last active July 20, 2020 03:03
Show Gist options
  • Save danielnunesdc/d9d09bea76bcb44da20a52044c8dd06a to your computer and use it in GitHub Desktop.
Save danielnunesdc/d9d09bea76bcb44da20a52044c8dd06a to your computer and use it in GitHub Desktop.
Instalar a lib Tkinter
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