debugging a python chunk in rmd in rstudio

I have Python chunks in an Rmd file in Rstudio that I would like to debug.

I am using ipdb but when it gets to the breakpoint in the function it doesn't open a separate terminal as I was expecting from the ipdb examples online; instead the console prompt just switches to ipdb.

I can interogate variable values and step thru the code but it is very difficult to work out which line I am on (in the examples online about ipdb when the code opens in a seperate window the current line is indicated by an arrow which updates as you step through the code).

import ipdb

def test(x):
  ipdb.set_trace() #ipdb breakpoint
  y=x*3
  z=y+4
  return z

 test(3)

Any suggestions for how to get ipdb to work properly within Rstudio or a Python debugger that is compatible with Rstudio would be great.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.