-
Notifications
You must be signed in to change notification settings - Fork 386
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Print output also to command line #1277
Comments
Hey @HelgeGehring , yes that is possible but you should use the For instance if I run
on this script: # %%
from time import sleep
# %%
print("A")
# %%
sleep(2)
# %%
print("B")
# %%
sleep(2)
# %%
print("C") then this is what gets displayed on the command line:
|
sounds amazing, I'll give it a try, thanks a lot!! would you have an idea how to also show the content of each cell? papermill doesn't have a "--log-input" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Would it be possible to also print the output of the script to the command line? I looked through the docs, but didn't find a solution yet.
I.e. when I run
that i also see the outputs as if I would have executed
?
Thanks!
The text was updated successfully, but these errors were encountered: