Pycharm 4.0.3 crash any PyQt program while using Debug(Pycharm 4.0.3 在使用调试时使任何 PyQt 程序崩溃)
问题描述
使用 Pycharm 4.0.3 调试任何 PyQt5
程序时,会导致 Python.exe 进程崩溃.
While debug any PyQt5
program using Pycharm 4.0.3, it crashes the Python.exe process.
最初,它显示 self
变量就好了.
Initially, it shows the self
variable just fine.
点击self
左边的+
后,会显示'Collecting data':
After you click the +
at the left of self
, it shows 'Collecting data':
然后立即使 Python.exe 崩溃,打印:
And then crash the Python.exe immediately, printing:
C:Anaconda3python.exe "C:Program Files (x86)JetBrainsPyCharm 4.0.3helperspydevpydevd.py" --multiproc --client 127.0.0.1 --port 62848 --file D:/My_Program/PyQt/TLC_Python34/TLC_Processor_Py34.py
pydev debugger: process 7536 is connecting
Connected to pydev debugger (build 139.781)
Process finished with exit code -1073741819 (0xC0000005)
我在 google 上找到了几个类似的报告,但我找不到任何解决方案.
I found several similar reports on google but I can't find any solution.
推荐答案
我在 File > Settings > Build, Execution, Deployment > Python Debugger 中发现 PyQt 框被选中.取消选中它可以解决问题.要解决每个程序的问题,请在文件 > 默认设置 > (...) 中执行相同操作.
I found in File > Settings > Build, Execution, Deployment > Python Debugger that PyQt box was checked. Unchecking it solves the problem. To solve the problem for every program, do the same in File > Default settings > (...).
这篇关于Pycharm 4.0.3 在使用调试时使任何 PyQt 程序崩溃的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Pycharm 4.0.3 在使用调试时使任何 PyQt 程序崩溃


基础教程推荐
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- 对多索引数据帧的列进行排序 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01