Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

how to install Jupyter console

$ 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-0.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
Source by jupyter-console.readthedocs.io #
 
PREVIOUS NEXT
Tagged: #install #Jupyter #console
ADD COMMENT
Topic
Name
7+8 =