Traceback (most recent call last): File "c:\users\ljimmy\appdata\local\programs\python\python38\lib\threading.py", line 932, in bootstrap_inner self.run() File "c:\users\ljimmy\appdata\local\programs\python\python38\lib\site-packages\decorator.py", line 232, in fun return caller(func, *(extras + args), **kw) File "c:\users\ljimmy\appdata\local\programs\python\python38\lib\site-packages\IPython\core\history.py", line 60, in only_when_enabled return f(self, *a, **kw) File "c:\users\ljimmy\appdata\local\programs\python\python38\lib\site-packages\IPython\core\history.py", line 891, in run print(("The history saving thread hit an unexpected error (%s)." File "C:\Users\Ljimmy\AppData\Local\Temp\ipykernel_3956\1395636033.py", line 6, in write File "c:\users\ljimmy\appdata\local\programs\python\python38\lib\tkinter_init.py", line 3746, in insert self.tk.call((self._w, 'insert', index, chars) + args) RuntimeError: main thread is not in main loop如何解决问题
时间: 2023-06-28 18:11:05 浏览: 186
Mac下anaconda中Spyder打开报错Traceback(most recent call last)…问题
5星 · 资源好评率100%
这个错误通常是因为在子线程中尝试更新主线程中的 GUI 元素,而 Tkinter 只允许主线程更新 GUI 元素。解决方法是使用 Tkinter 提供的 `after()` 函数定时调用更新函数,或者使用 `threading` 模块的 `Queue` 来在主线程中获取更新请求并更新 GUI 元素。您可以尝试以下代码解决这个问题:
```python
import tkinter as tk
from queue import Queue
import threading
root = tk.Tk()
# 创建一个 Queue 用于在主线程中获取更新请求
update_queue = Queue()
# 定义一个更新函数,用于更新 GUI 元素
def update_gui():
while not update_queue.empty():
# 获取更新请求并更新 GUI 元素
request = update_queue.get()
# 更新代码
# ...
# 在 100 毫秒后再次调用此函数,以便持续更新 GUI 元素
root.after(100, update_gui)
# 启动更新函数
update_gui()
# 创建一个子线程用于产生更新请求
def worker():
while True:
# 产生更新请求
# ...
# 将更新请求放入 Queue 中,以便在主线程中获取并更新 GUI 元素
update_queue.put(request)
t = threading.Thread(target=worker)
t.start()
root.mainloop()
```
在这个示例中,我们创建了一个 Queue 用于在主线程中获取更新请求,然后定时调用 `update_gui()` 函数以检查是否有更新请求,并更新 GUI 元素。子线程可以在需要更新 GUI 元素时将更新请求放入 Queue 中,以便在主线程中获取并更新 GUI 元素。
阅读全文