Reputation: 361
Can someone please tell me how I can detach from an IPython kernel without terminating it?
I see in the documentation of quit()
that there is a parameter keep_kernel
, but unfortunately quit(keep_kernel=True)
won't work.
Upvotes: 4
Views: 810
Reputation: 1391
If you are connected to the kernel via the IPython console client and are on a Unix-like OS, you can detach using Ctrl-\
Upvotes: 2