rossoebruno
Profilo di
Nome | rossoebruno |
---|---|
Indirizzo email | n/a |
Messaggi | 2 |
-
- 2019-02-07 14:16:40
- Re: from tkinter import * - In linux Funziona solo su IDLE e su microsoft no - errore "ImportError: cannot import name Entry"
- Forum >> Programmazione Python >> GUI
-
HI !
guarda ache se solo faccio
from tkinter import *
finestra = Tk()
finestra.resizable(True,True)
finestra.title("Cerco Stringa")
finestra.geometry('1000x500')
finestra.mainloop()
mi da lo stesso errore che in Linux non mi da !
-
- 2019-02-07 13:55:55
- from tkinter import * - In linux Funziona solo su IDLE e su microsoft no - errore "ImportError: cannot import name Entry"
- Forum >> Programmazione Python >> GUI
-
Salve , mi succede questo problema,
se utilizzo IDLE :
Su linux
1) faccio from tkinter import * ---> ed è ok
2) Da riga comando mi da errore "ImportError: cannot import name Entry"
Su Microsoft
sia da linea di comando che da IDLE mi da
File "E:\test\tkinter.py", line 4, in <module>
from tkinter import Entry
ImportError: cannot import name Entry
#! /usr/bin/python3
import tkinter as tk #per finestra 1
from tkinter import *
from tkinter import scrolledtext
from tkinter import filedialog
from tkinter import messagebox
from tkinter import scrolledtext
Help !