What is the equivalent of Pydev Remote Debugger Follow
Answered
I want to debug a .py file which is part of an running application. I used to do in eclipse/pydev like this Remote Debugger (pydev.org) . How to do it in PyCharm? Would appreciate your help .
Please sign in to leave a comment.
You can either use the Remote Debug Server https://www.jetbrains.com/help/pycharm/remote-debugging-with-product.html#remote-debug-config or Attach to Process (works only locally) https://www.jetbrains.com/help/pycharm/attaching-to-local-process.html
Thanks Sergey,
my python script is part of java application which runs in local machine.
Will it work for community edition?
Remote Debug Server is available only in PyCharm Professional, but Attach to Process is available in both.
Tried 'Attach to Process..' to my 'jython-app.exe' and got, RuntimeError: Function 'PyGILState_Ensure' not found in any module.
Would appreciate your suggestion/comments.
There is a similar problem with miniconda https://youtrack.jetbrains.com/issue/PY-46677/Cant-attach-to-Python-from-Miniconda-on-Windows
Perhaps Jython is affected as well :(
Thanks, Sergey, for your time and comments :-)