PyCharm 2019.1.4 Debugger not working Follow
I have added PYCHARM_DEBUG=True; in Environment variables. Still, the breakpoint is not stopping specified place.
Console outpu:
C:\Users\anumasr\AppData\Local\Programs\Python\Python37-32\python.exe "C:\Program Files (x86)\JetBrains\PyCharm Community Edition 2019.1.4\helpers\pydev\pydevd.py" --multiproc --qt-support=auto --client 127.0.0.1 --port 56382 --file C:/python_workspace/test123.py
Using Cython speedups
Unable to load jupyter_debug plugin
Executing file C:/python_workspace/test123.py
arguments: ['C:/python_workspace/test123.py']
PYDEVD_FILTER_LIBRARIES False
Started in multiproc mode
('Connecting to ', '127.0.0.1', ':', '56382')
('Connected.',)
debugger: received >>99 -1 56383
<<
Received command: ??? 99 -1 56383
Received port 56383
pydev debugger: process 11168 is connecting
('Connecting to ', '127.0.0.1', ':', '56383')
('Connected.',)
Connected to pydev debugger (build 191.8026.44)
debugger: received >>501 1 0.1 WIN
<<
Received command: CMD_VERSION 501 1 0.1 WIN
sending cmd --> CMD_VERSION 501 1 191.8026.44
debugger: received >>111 3 python-line c:/python_workspace/test123.py 1 None THREAD None None
<<
Received command: CMD_SET_BREAK 111 3 python-line c:/python_workspace/test123.py 1 None THREAD None None
Added breakpoint:c:\python_workspace\test123.py - line:1 - func_name:b'None'
debugger: received >>111 5 python-line c:/python_workspace/test123.py 3 None THREAD None None
101 7
122 9 python-BaseException None None 0 1 0
<<
Received command: CMD_SET_BREAK 111 5 python-line c:/python_workspace/test123.py 3 None THREAD None None
Added breakpoint:c:\python_workspace\test123.py - line:3 - func_name:b'None'
Received command: CMD_RUN 101 7
Received command: CMD_ADD_EXCEPTION_BREAK 122 9 python-BaseException None None 0 1 0
Exceptions to hook on terminate: {'BaseException': <_pydevd_bundle.pydevd_breakpoints.ExceptionBreakpoint object at 0x058F0450>}
debugger: received >>146 11 SHOW_RETURN_VALUES 0
<<
Received command: CMD_SHOW_RETURN_VALUES 146 11 SHOW_RETURN_VALUES 0
Show return values: False
Process finished with exit code -1073741819 (0xC0000005)
Please sign in to leave a comment.
Solved the issue. Problem with pluggin 'jupyter_debug plugin' not enabled. Created new project and followed below steps
Create a new project, specify a virtual environment, and install the jupyter package.
Open or create an .ipynb file.
https://www.jetbrains.com/help/idea/jupyter-notebook-support.html
then the debugger is stopping.