Process finished with exit code -1073741819 (0xC0000005) Pycharm(进程以退出代码 -1073741819 (0xC0000005) Pycharm 完成)
问题描述
我完全坚持这一点.我不断收到错误消息
I'm completly stuck on this. I keep getting error message
进程以退出代码 -1073741819 (0xC0000005) 结束
Process finished with exit code -1073741819 (0xC0000005)
我正在使用带有 pyqt5.6 和 qt5.6.2 的 pycharm,当我升级到这些版本时问题就开始了.
I'm using pycharm with pyqt5.6 and qt5.6.2 and the problem started when I upgraded to these versions.
我已尽我所能进行搜索,但未能找到答案.有人可以帮忙吗?
I've tried searching as much as I can, but have not been able to find an answer. Can anyone help please?
推荐答案
假设你在 Windows 下运行.应用程序错误代码0xc0000005,也称为访问冲突错误,是Windows用户遇到的常见问题,无论操作系统版本如何.触发应用程序错误 0xc0000005 的原因有多种.就我而言,我在 PyCharm(或 Eclipse)中运行调试模式,代码包含以下内容:
Assume you are running under Windows. Application Error code 0xc0000005, also known as Access Violation error, is a common problem experienced by Windows users, regardless of os version. There are various causes to trigger Application Error 0xc0000005. For my case, I'm running debug mode in PyCharm (or Eclipse) with code that includes the following:
from pympler import muppy
all_objects=muppy.get_objects() # this causes pydev debugger exit with code -1073741819 (0xC0000005)
如果在非调试(运行)模式下通过 PyCharm 执行同一段代码,那就太好了.在调试模式下禁用上述代码,问题已解决.
It was perfectly fine if execute the same piece of code through PyCharm in non-debug (Run) mode. Disabled the above code in debug mode, issue resolved.
环境:PyCharm Community 2019.3、Anaconda 3、Python 3.7.3、pympler 0.7、Windows 10 Enterprise
Environment: PyCharm Community 2019.3, Anaconda 3, Python 3.7.3, pympler 0.7, Windows 10 Enterprise
这篇关于进程以退出代码 -1073741819 (0xC0000005) Pycharm 完成的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:进程以退出代码 -1073741819 (0xC0000005) Pycharm 完成


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