Bastian Ballmann
Bastian Ballmann

Reputation: 361

Detach from IPython kernel without terminating it

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

Answers (1)

lebedov
lebedov

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

Related Questions