_original_start_new_thread = thread_module._original_start_new_thread = thread_module.start_new_thread AttributeError: module 'thread' has no attribute 'start_new_thread'
时间: 2023-09-06 13:14:07 浏览: 145
这个错误提示意味着在 module 'thread' 中没有名为 'start_new_thread' 的属性。这通常是由于您尝试在 Python 3 中使用 Python 2 中已弃用的旧线程模块而引起的。
为了解决这个问题,您应该改用 Python 3 中的 threading 模块来管理线程。 threading 模块提供了一种更现代、更安全和更易于使用的线程实现。您可以使用 threading.Thread 类来创建和管理线程,而不是使用旧的 start_new_thread() 函数。
相关问题
为什么我没有用到线程,运行debug的时候还是报错:_original_start_new_thread = thread_module._original_start_new_thread = thread_module.start_new_thread AttributeError: module 'thread' has no attribute 'start_new_thread'
这个问题可能是因为您的代码中使用了旧版本的 Python 线程模块 thread,而在新版本的 Python 中,该模块已被移除。在新版本的 Python 中,您应该使用 threading 模块来处理线程。如果您的代码中使用了 thread 模块,请尝试将其替换为 threading 模块,并使用 threading.Thread 类来创建线程。这应该可以解决您的问题。如果问题仍然存在,请提供更多代码和错误信息,以便我可以提供更具体的建议。
import sys from Qt.demo01 import demo01 from PyQt5.QtWidgets import QApplication,QMainWindow if __name__ == "__main__": #只有直接运行这个脚本,才会往下执行 #别的脚本文件执行,不会调用这个语句 #实例化,传参 app = QApplication(sys.argv) #创建对象 mainWindow = QMainWindow() #创建ui,引用demo01文件中的UI_MainWindow类 ui = demo01.Ui_MainWindow() #调用UI_Mainwindow类的setupUi,创建初始组件 ui.setupUi(mainWindow) #创建窗口 mainWindow.show() #进入主循环,并通过exit函数确保主循环安全结束 sys.exit(app.exec_())进入debug的时候报错_original_start_new_thread = thread_module._original_start_new_thread = thread_module.start_new_thread AttributeError: module 'thread' has no attribute 'start_new_thread'
这个问题可能是因为您的代码中使用了旧版本的 PyQt5,而在新版本的 PyQt5 中,线程模块已经被修改。您可以尝试在代码开头添加以下代码,以手动设置 PyQt5 为新版本的线程模块:
```python
import threading
threading._dummy_thread._thread.start_new_thread = threading._dummy_thread.start_new_thread
```
这应该可以解决您的问题。如果问题仍然存在,请尝试升级 PyQt5 到最新版本。
阅读全文