'gtk'が定義されていないことに気づいたので、PYGTKをインポートするための管理にもかかわらず、以下のコードである:以下NameError:グローバル名 'gtk'が定義されていません
import sys
importStatus = False
try:
from gtk import *
importStatus = True
except ImportError:
print "PyGTK module does not exist. Can't launch GUI !"
print "Please download and install GTK and PyGTK."
importStatus = False
if importStatus:
class gtkGUI():
def __init__(self):
print "gtkGUI imported"
def startGUI(self):
print "GUI Started"
self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)
return None
は誤りです:
Traceback (most recent call last):
File "mainGUI.py", line 14, in <module>
gtk.startGUI()
File "..../gtkGUI.py", line 25, in startGUI
gtk.main()
NameError: global name 'gtk' is not defined
どのように私はこのエラーを解決する必要がありますか?ありがとう。
ありがとうございました。あなたは正しいです:D。 – thotheolh