Pycharm debugger instantly exits with 139 code(Pycharm 调试器立即退出 139 代码)
问题描述
从 Pycharm 2017.2.3 升级到 Pycharm 2017.1.4 Pycharm 的 Debugger 建议构建 cpython(或与之相关的):
After upgrade from Pycharm 2017.2.3 to Pycharm 2017.1.4 Pycharm's Debugger suggested to build cpython (or sth associated with it):
path/to/my/python/opt/pycharm-community-2017.1.4/helpers/pydev/setup_cython.py build_ext --inplace
在我这样做之后,Debugger 现在立即返回此错误:
After I did this, Debugger now instantly returns this error:
进程以退出代码 139 结束(被信号 11:SIGSEGV 中断)
Process finished with exit code 139 (interrupted by signal 11: SIGSEGV)
我发现 cpython 也存在类似问题 (https://youtrack.jetbrains.com/issue/PY-23273)但我不能使用那里提到的解决方法,因为我错过了它建议删除的文件......我没有使用 cython,我希望我忽略这条关于构建它的消息..
I found out that there was similar issue with cpython (https://youtrack.jetbrains.com/issue/PY-23273) but I cannot use the workaround mentioned there because I am missing the files it suggest to remove... I am not using cython, I wish I ignored this message about building it..
我在 linux 上(SMP Debian 3.16.36-1+deb8u1 (2016-09-03) x86_64 GNU/Linux)
I am on linux (SMP Debian 3.16.36-1+deb8u1 (2016-09-03) x86_64 GNU/Linux)
Python 2.7
推荐答案
我已经通过在 PyCharms 的调试器设置(构建、执行、部署 > Python 调试器)中禁用 PyQt compatible 选项来修复它.我没有使用PyQt,所以我没有遇到任何麻烦
I've fixed it by disabling PyQt compatible option in PyCharms's debugger settings (Build, Execution, Deployment > Python Debugger). I don't use PyQt, so I have not met any troubles
这篇关于Pycharm 调试器立即退出 139 代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Pycharm 调试器立即退出 139 代码
基础教程推荐
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 包装空间模型 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 求两个直方图的卷积 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
