RuntimeError:主线程不在主循环中

时间:2013-02-04 19:51:20

标签: python multithreading tkinter

当我打电话

self.client = ThreadedClient() 

在我的Python程序中,我收到了错误

  

“RuntimeError:主线程不在主循环中”

我已经完成了一些谷歌搜索,但我发生了某种错误...有人可以帮助我吗?

完整错误:

Exception in thread Thread-1:
    Traceback (most recent call last):
    File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 530, in __bootstrap_inner
    File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 483, in run
    File "/Users/Wim/Bird Swarm/bird_swarm.py", line 156, in workerGuiThread
    self.root.after(200, self.workerGuiThread)
    File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/Tkinter.py", line 501, in after
    File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/Tkinter.py", line 1098, in _register
    RuntimeError: main thread is not in main loop

类:

class ThreadedClient(object):

    def __init__(self):
        self.queue = Queue.Queue( )
        self.gui = GuiPart(self.queue, self.endApplication)
        self.root = self.gui.getRoot()
        self.running = True
        self.GuiThread = threading.Thread(target=self.workerGuiThread) 
        self.GuiThread.start()

    def workerGuiThread(self):
        while self.running:
            self.root.after(200, self.workerGuiThread)
            self.gui.processIncoming( )     

    def endApplication(self): 
        self.running = False

    def tc_TekenVogel(self,vogel):
        self.queue.put(vogel)

class GuiPart(object):
    def __init__(self, queue, endCommand): 
        self.queue = queue
        self.root = Tkinter.Tk()
        Tkinter.Canvas(self.root,width=g_groottescherm,height=g_groottescherm).pack()
        Tkinter.Button(self.root, text="Move 1 tick", command=self.doSomething).pack()
        self.vogelcords = {} #register of bird and their corresponding coordinates 

    def getRoot(self):
        return self.root

    def doSomething():
        pass #button action

    def processIncoming(self):
        while self.queue.qsize( ):
            try:
                msg = self.queue.get(0)
                try:
                    vogel = msg
                    l = vogel.geeflocatie()
                    if self.vogelcords.has_key(vogel):
                        cirkel = self.vogelcords[vogel]
                        self.gcanvas.coords(cirkel,l.geefx()-g_groottevogel,l.geefy()-g_groottevogel,l.geefx()+g_groottevogel,l.geefy()+g_groottevogel)            
                    else:
                        cirkel = self.gcanvas.create_oval(l.geefx()-g_groottevogel,l.geefy()-g_groottevogel,l.geefx()+g_groottevogel,l.geefy()+g_groottevogel,fill='red',outline='black',width=1)
                        self.vogelcords[vogel] = cirkel 
                    self.gcanvas.update()
                except:
                    print('Failed, was van het type %' % type(msg))
            except Queue.Empty:
                pass

6 个答案:

答案 0 :(得分:27)

您在主线程之外的线程中运行主GUI循环。你不能这样做。

文档在少数几个地方提到Tkinter不是很安全,但据我所知,从来没有完全说出你只能从主线程中与Tk交谈。原因是事实有点复杂。 Tkinter本身 是线程安全的,但它很难以多线程方式使用。最接近官方文件的似乎是this page

  

Q值。有没有替代Tkinter的线程安全吗?

     

Tkinter的?

     

只需在主线程中运行所有UI代码,然后让编写者写入Queue对象......

(给出的示例代码不是很好,但它足以弄清楚他们建议的是什么并正确地做事。)

实际上 是Tkinter mtTkinter的线程安全替代品。它的文档实际上很好地解释了这种情况:

  

尽管Tkinter在技术上是线程安全的(假设Tk是使用--enable-threads构建的),实际上在多线程Python应用程序中使用时仍然存在问题。问题源于_tkinter模块在处理来自其他线程的调用时尝试通过轮询技术获得对主线程的控制。

我相信这正是你所看到的:你在Thread-1中的Tkinter代码试图查看主线程以找到主循环,但它不在那里。

所以,这里有一些选择:

  • 执行Tkinter文档推荐的内容并从主线程中使用TkInter。可能是将当前的主线程代码移动到工作线程中。
  • 如果你正在使用其他一些想要接管主线程的库(例如twisted),它可能有办法与Tkinter集成,在这种情况下你应该使用它。
  • 使用mkTkinter解决问题。

此外,虽然我没有发现这个问题的任何确切重复,但是有很多相关的问题。有关详细信息,请参阅this questionthis answer等等。

答案 1 :(得分:3)

from tkinter import *
from threading import Thread
from time import sleep
from random import randint

class GUI():

    def __init__(self):
        self.root = Tk()
        self.root.geometry("200x200")

        self.btn = Button(self.root,text="lauch")
        self.btn.pack(expand=True)

        self.btn.config(command=self.action)

    def run(self):
        self.root.mainloop()

    def add(self,string,buffer):
        while  self.txt:
            msg = str(randint(1,100))+string+"\n"
            self.txt.insert(END,msg)
            sleep(0.5)

    def reset_lbl(self):
        self.txt = None
        self.second.destroy()

    def action(self):
        self.second = Toplevel()
        self.second.geometry("100x100")
        self.txt = Text(self.second)
        self.txt.pack(expand=True,fill="both")

        self.t = Thread(target=self.add,args=("new",None))
        self.t.setDaemon(True)
        self.t.start()

        self.second.protocol("WM_DELETE_WINDOW",self.reset_lbl)

a = GUI()
a.run()

也许这个例子对某人有帮助。

答案 2 :(得分:2)

由于所有这些都帮助解决了我的问题,但并没有完全解决问题,因此,请记住以下另一件事:

就我而言,我开始在许多线程中导入pyplot库并在那里使用它。将所有库调用移到我的主线程后,我仍然遇到该错误。

我确实通过删除该库在所有其他线程中使用的其他文件中的所有import语句来摆脱它。即使他们没有使用该库,也是由该错误引起的。

答案 3 :(得分:1)

我找到了解决方法。 它可能看起来像个玩笑,但您应该添加

plt.switch_backend('agg')

答案 4 :(得分:0)

我知道这很晚,但是我将线程设置为守护程序,并且没有引发异常:

t = threading.Thread(target=your_func)
t.setDaemon(True)
t.start()

答案 5 :(得分:0)

在末尾写上

root.mainloop()

当然,如果root不是Tk,则应该是root对象的名称。