Python Program Crashes Because Of Ntdll.dll And Qtgui4.dll
I have designed a Python software to collect data from my microcontroller and make live plots: I have twelve matplotlib animations in my GUI (the GUI is designed with PyQt). Each
Solution 1:
I believe that the issue is fixed now. This was the root cause of the problem. I accessed my GUI (for example the live plots, the LEDs, ..) from another thread, in a thread-unsafe way. The application works good for some time (half a minute), but inevitably crashes miserably later on.
I fixed it through using the signal/slot mechanism. This is how (a link to another StackOverflow question):
Simplest way for PyQT Threading
Baca Juga
- How To Build A Python Wheel With Compiled Fortran Extension Module Without Requiring A Specific Mingw Version On The User's System?
- Importerror: Could Not Find The Dll(s) 'msvcp140.dll Or Msvcp140_1.dll'. Even When The Files Are Located In The %path% Directory
- Access Violation In Logonuserw In Python 3
I'm sorry for the inconvenience.
Post a Comment for "Python Program Crashes Because Of Ntdll.dll And Qtgui4.dll"