1

I wonder what is the flow that I need to foloow to remotely debug a Python script?

For C/CPP, on instance A I run:

gdbserver :1234 binary

And from gdb, on instance B, I run

gdb binary    
target remote $host:1234

Is there any Python alternative for this flow. Can anyone point me to a Hello world example demoing a remote debug? Thanks

1 Answer 1

1

Here you have a list of debugging tools:

https://wiki.python.org/moin/PythonDebuggingTools

rpdb is cross platform and support remote debugging.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.