Ho Ubuntu 14.04 con supporto python-2.7 e python-3. Sto portando la mia applicazione Python da python-2.7 a python-3. Ho example.py
file che sta importando sotto i moduli. e io #!/usr/bin/python3
come python evn variabile.
import gtk, gobject, time, sys, os, subprocess, signal
**ImportError: No module named 'gtk'**
Sto ottenendo un errore superiore, quando provo a eseguire con python3.
Qualche idea su cosa manca qui?
Risposta accettata:
prova:
from gi.repository import Gtk
e sostituisci gtk
di Gtk
nel tuo codice
o
from gi.repository import Gtk as gtk
vedi anche:Python GTK+ 3 Tutorial:Guida introduttiva