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
|
Jupyter console |version|
=========================
The Jupyter console is a terminal frontend for kernels using the Jupyter protocol.
The console can be installed with::
pip install jupyter_console
If you want to use conda instead to perform your installation::
conda install -c conda-forge jupyter_console
And started with::
jupyter console
To see configuration options::
jupyter console -h
To start the console with a particular kernel, ask for it by name::
jupyter console --kernel=julia-1.4
A list of available kernels can be seen with::
jupyter kernelspec list
You can connect to a live kernel (e.g. one running in a notebook) with its ID::
jupyter console --existing KERNEL_ID
or even connect to the most recently started kernel by default::
jupyter console --existing
Contents:
.. toctree::
:maxdepth: 2
config_options
release
changelog
|