Can you use ipdb in dagster? e.g. ```context.ipdb....
# ask-community
g
Can you use ipdb in dagster? e.g.
Copy code
context.ipdb.set_trace()
?
p
For debugging ops during execution, we have
context.pdb.set_trace()
. See https://docs.dagster.io/_apidocs/execution#dagster.OpExecutionContext.pdb
I guess you’re asking specifically for
ipdb
?
g
Yeah that was the hope but figured it was unlikely
p
yeah, unfortunately no. I think probably we don’t want to add
ipdb
to our list of package deps. you could file a feature request though to progressively check for it though under a try/catch