Problema con GUI TK su mac

di il
2 risposte

Problema con GUI TK su mac

Ciao

ho solo il mac e sto provando a creare una finestra con tkiner

import tkinter

#create window
window = tkinter.Tk()
window.title("Programma di prova")
window.geometry("1024x768")
window.resizable(False,False)

#add widgets
label_title = tkinter.Label(window, text="Welcome to programma di prova", font=("Arial", 16),fg="black")
label_title.grid(row=1, column=0, pady=20, padx=20)

window.mainloop()

questo il risultato

dove sbaglio?

anche il comando: window.config(bg="#000000"

non mi da nessun risultato.

grazie

2 Risposte

  • Re: Problema con GUI TK su mac

    Provato su Debian 10 (Python 3.7) e funziona come previsto.

    Da questa pagina si legge:

    If you are using macOS 10.6 or later, the Apple-supplied Tcl/Tk 8.5 has serious bugs that can cause application crashes. If you wish to use IDLE or Tkinter, do not use the Apple-supplied Pythons. Instead, install and use a newer version of Python from python.org or a third-party distributor that supplies or links with a newer version of Tcl/Tk.”

    Controlla la tua versione di MacOS e la versione di Python+ Tcl/Tk.

  • Re: Problema con GUI TK su mac

    Grazie, ho visto che non funzionano bene su macos. son passato a pyqt6.

Devi accedere o registrarti per scrivere nel forum
2 risposte