-
Hello! I want to know if is it possible to send I'm using this method in Jupyter notebook and I can not longer see the output of this method after Reconnect to Jupyter Kernel. Moreover if I trying to interrupt current run and call Is there any workaround for described usecase? Any help is greatly appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
HI @AlexGrunt, Yes, I have done this and it works fine. Here's how:
Hope this helps. |
Beta Was this translation helpful? Give feedback.
HI @AlexGrunt,
Yes, I have done this and it works fine. Here's how:
f = open(...)
just before thetry...except
block around here.sys.stderr.write
(or add) withf.write(...)
around line. Other option could be to redirect thestderr
out in your terminal to a file.In the first case, do not forget to write to the file every time there update (don't wait until the is completed), e.g.
Hope this helps.