rdil2503
rdil2503

Reputation: 345

Subprocess Remote debugging with PyCharm 2.5

I would use the remote debugging on Pycharm 2.5. I can debug the main process but is it possible debug also the subprocess? In the local debug there is the option "Attach to subprocess automatically while debugging". Isn't there for remote debug? Thanks.

Upvotes: 0

Views: 1062

Answers (1)

Dmitry Trofimov
Dmitry Trofimov

Reputation: 7601

Multiprocess debug isn't supported for Remote Debug in PyCharm. I've created an issue for that.

But to debug multiple processes running remotely you can use Remote Interpreters. For remote run they provide the same debugging abilities as if it is local.

Upvotes: 2

Related Questions