per le versioni recenti di jupyter / ipython : utilizzarejupyter kernelspec
Documento completo: https://ipython.readthedocs.io/en/latest/install/kernel_install.html
elenca i kernel correnti
$ jupyter kernelspec list
Available kernels:
python2 .../Jupyter/kernels/python2
python3 .../Jupyter/kernels/python3
Nel mio caso, l'installazione del kernel python3 è stata interrotta perché il py3.5 collegato non era più lì, sostituito da un py3.6
aggiungi / rimuovi kernel
Rimuovere:
$ jupyter kernelspec uninstall python3
Aggiungine uno nuovo:
usando il Python che desideri aggiungere e indicando il python che esegue il tuo Giove:
$ /path/to/kernel/env/bin/python -m ipykernel install --prefix=/path/to/jupyter/env --name 'python-my-env'
Vedi altri esempi in https://ipython.readthedocs.io/en/6.5.0/install/kernel_install.html#kernels-for-different-environments
Elenca di nuovo:
$ jupyter kernelspec list
Available kernels:
python3 /usr/local/lib/python3.6/site-packages/ipykernel/resources
python2 /Users/stefano/Library/Jupyter/kernels/python2
Doc: https://jupyter-client.readthedocs.io/en/latest/kernels.html#kernelspecs
Dettagli
I kernel disponibili sono elencati nella kernels
cartella in DIRECTORY DATI di Jupyter (vedi http://jupyter.readthedocs.io/en/latest/projects/jupyter-directories.html per i dettagli).
Ad esempio, su macosx sarebbe /Users/YOURUSERNAME/Library/Jupyter/kernels/
il kernel è semplicemente descritto da un kernel.json
file, ad es. per/Users/me/Library/Jupyter/kernels/python3/kernel.json
{
"argv": [
"/usr/local/opt/python3/bin/python3.5",
"-m",
"ipykernel",
"-f",
"{connection_file}"
],
"language": "python",
"display_name": "Python 3"
}
Invece di manipolarlo a mano, puoi usare il kernelspec
comando (come sopra). In precedenza era disponibile tramite ipython ora tramite jupyter ( http://ipython.readthedocs.io/en/stable/install/kernel_install.html#kernels-for-different-environments - https://jupyter-client.readthedocs.io/ it / latest / kernels.html # kernelspecs ).
$ jupyter kernelspec help
Manage Jupyter kernel specifications.
Subcommands
-----------
Subcommands are launched as `jupyter kernelspec cmd [args]`. For information on
using subcommand 'cmd', do: `jupyter kernelspec cmd -h`.
list
List installed kernel specifications.
install
Install a kernel specification directory.
uninstall
Alias for remove
remove
Remove one or more Jupyter kernelspecs by name.
install-self
[DEPRECATED] Install the IPython kernel spec directory for this Python.
To see all available configurables, use `--help-all`
Gherigli per altre lingue
A proposito, non strettamente correlato a questa domanda, ma ci sono molti altri kernel disponibili ... https://github.com/jupyter/jupyter/wiki/Jupyter-kernels
python2
è il tuo kernel predefinito. Da quando hai installato ipython in unpython2
interprete, ottieni anchepython2
il tuo kernel predefinito. Se invece lo avessi installato in apython3.x
, per impostazione predefinita avresti unpython3
kernel.