python:如何调试多进程? (使用 eclipse+pydev)

发布于 2024-11-24 06:02:26 字数 257 浏览 4 评论 0原文

我已经看到了有关该主题的几个问题,但没有得到完整的答案...

我的代码基本上是:

from multiprocessing import Process

p = Process(target=f).start()
p.join()

def f():
  print 'break!'

我想在 print 上放置一个断点。我正在使用 pydev+eclipse (在 Ubuntu 上)。

I've seen a couple of questions on the topic but I didn't get a full answer...

My code is basically:

from multiprocessing import Process

p = Process(target=f).start()
p.join()

def f():
  print 'break!'

And I want to put a breakpoint on the print. I'm using pydev+eclipse (on Ubuntu).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千里故人稀 2024-12-01 06:02:44

由于新进程本身不受 PyDev 控制,因此您需要通过远程调试工具手动让 PyDev 调试器知道。

http://pydev.org/manual_adv_remote_debugger.html

使用 pydevd.set_trace() - 请注意您的断点获胜不起作用(不确定这是否改变了最近的 PyDev 版本),但您需要在代码中手动输入 set_trace() 命令。

Because the new process itself is not controlled by PyDev, you need to make PyDev debugger manually aware of through Remote Debugging facilities.

http://pydev.org/manual_adv_remote_debugger.html

Use pydevd.set_trace() - notice that your breakpoints won't work (not sure if this has changed recent PyDev versions), but you need to manually enter set_trace() command to your code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文