Basel Ali <[email protected]> writes: > Thank you so much for the help. I really tried that remote debugging even > before sending the email but the problem is that I can't get it to work( I > don't know which line should be written on which computer) > I attached an image of the process of communicating with the cluster > > I write those 2 lines in the code that is being run on/sent to the compute > nodes > from pudb.remote import set_trace > set_trace(term_size=(80, 24), host="the ip address of the login node", > port=9999) > > And write this line on the login node > telnet localhost 9999 > > But it fails. Am I right? I am not knowledgeable about networking so it's a > bit hard to me.
Please keep the mailing list cc'd for archival, and stop spamming folks with screenshots. As for your question, try this: set_trace(term_size=(80, 24), port=9999) And write this line on the login node telnet compute-node 9999 Andreas
signature.asc
Description: PGP signature
_______________________________________________ Pudb mailing list [email protected] https://lists.tiker.net/listinfo/pudb
