Hi Matthias,
thanks a lot for your answer!
> I believe --KernelSpecManager.ensure_native_kernel=False at the command line or
> c.KernelSpecManager.ensure_native_kernel=False in the global (or per
> user) config file should do the trick.
>
> Let me know if that does the trick for you.
I just tried `--KernelSpecManager.ensure_native_kernel=False` at the
command line, which worked perfectly =)
> Otherwise if the "Python 3" kernelspec have be installed you can find
> it's location by:
>
> $ jupyter kernelspec list
> Available kernels:
> ....
> python3 /usr/local/share/jupyter/kernels/python3
> .....
>
> Edit <above-path>/kernel.json and change `"display_name": "Python 3"`
> to your liking to change the UI name.
In the directory of the default kernelspec, there is no `kernel.json`
file:
(root) [jupyter@web ~]$ jupyter kernelspec list
Available kernels:
python3 /home/jupyter/pyenv_client/lib/python3.5/site-packages/ipykernel/resources
bash /home/jupyter/pyenv_client/share/jupyter/kernels/bash
python2-lpy0.1 /home/jupyter/pyenv_client/share/jupyter/kernels/python2-lpy0.1
python3-lpy0.1 /home/jupyter/pyenv_client/share/jupyter/kernels/python3-lpy0.1
(root) [jupyter@web ~]$ ls /home/jupyter/pyenv_client/lib/python3.5/site-packages/ipykernel/resources
logo-32x32.png logo-64x64.png
Since I wanted to simply disable the default kernel, which worked thanks
to your help, I'm fine -- just wanted to let you know for future
reference.