1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
.. Copyright (c) Jupyter Development Team.
.. Distributed under the terms of the Modified BSD License.
.. _running:
Managing Kernels and Terminals
==============================
The Running panel in the left sidebar shows a list of all the kernels and
terminals currently running across all notebooks, code consoles, and
directories:
.. image:: ../images/running-layout.png
:align: center
:class: jp-screenshot
:alt:
.. only:: comment
Alt text is intentionally left blank because the image content is described directly prior.
.. _reopen-document:
As with the classic Jupyter Notebook, when you close a notebook
document, code console, or terminal, the underlying kernel or terminal
running on the server continues to run. This enables you to perform
long-running actions and return later. The Running panel enables you to
re-open or focus the document linked to a given kernel or terminal:
.. raw:: html
<div class="jp-youtube-video">
<iframe src="https://www.youtube-nocookie.com/embed/gDM5lwU6Dmo?rel=0&showinfo=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
.. _shutdown-kernel:
Kernels or terminals can be shut down from the Running panel:
.. raw:: html
<div class="jp-youtube-video">
<iframe src="https://www.youtube-nocookie.com/embed/PBDN9AJWBlw?rel=0&showinfo=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
.. _shutdown-all-kernels:
You can shut down all kernels and terminals by clicking the ``X``
button:
.. raw:: html
<div class="jp-youtube-video">
<iframe src="https://www.youtube-nocookie.com/embed/tOjequ-46Qc?rel=0&showinfo=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
|