dla najnowszych wersji jupyter / ipython : użyjjupyter kernelspec
Pełny dokument: https://ipython.readthedocs.io/en/latest/install/kernel_install.html
wyświetlać aktualne jądra
$ jupyter kernelspec list
Available kernels:
python2 .../Jupyter/kernels/python2
python3 .../Jupyter/kernels/python3
W moim przypadku konfiguracja jądra python3 została zerwana, ponieważ nie było już powiązanego py3.5, zastąpiono go py3.6
dodaj / usuń jądra
Usunąć:
$ jupyter kernelspec uninstall python3
Dodaj nowy: za
pomocą Pythona, który chcesz dodać, i wskazując na python, który uruchamia twój Jowisz:
$ /path/to/kernel/env/bin/python -m ipykernel install --prefix=/path/to/jupyter/env --name 'python-my-env'
Zobacz więcej przykładów w https://ipython.readthedocs.io/en/6.5.0/install/kernel_install.html#kernels-for-different-environments
Wymień ponownie:
$ jupyter kernelspec list
Available kernels:
python3 /usr/local/lib/python3.6/site-packages/ipykernel/resources
python2 /Users/stefano/Library/Jupyter/kernels/python2
Dokument: https://jupyter-client.readthedocs.io/en/latest/kernels.html#kernelspecs
Detale
Dostępne jądra są wymienione w kernels
folderze w KATALOGU DANYCH Jupyter ( szczegółowe informacje znajdują się na stronie http://jupyter.readthedocs.io/en/latest/projects/jupyter-directories.html ).
Na przykład na macosx /Users/YOURUSERNAME/Library/Jupyter/kernels/
jądro jest po prostu opisane przez kernel.json
plik, np. dla/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"
}
Zamiast manipulować tym ręcznie, możesz użyć kernelspec
polecenia (jak wyżej). Był wcześniej dostępny za pośrednictwem ipython, teraz przez jupyter ( http://ipython.readthedocs.io/en/stable/install/kernel_install.html#kernels-for-different-environmentments - https://jupyter-client.readthedocs.io/ pl / 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`
Jądra dla innych języków
Nawiasem mówiąc, nie jest to ściśle związane z tym pytaniem, ale dostępnych jest wiele innych jąder ... https://github.com/jupyter/jupyter/wiki/Jupyter-kernels
python2
jest twoim domyślnym jądrem. Ponieważ zainstalowałeś ipython wpython2
interpreter, otrzymujesz równieżpython2
jako domyślne jądro. Jeśli zamiast tego zainstalowałeś się wpython3.x
, domyślnie miałbyśpython3
jądro.