5

I need to change the kernel to point it to miniconda version of Python, but Jupyter Notebook shows only one "Python 3" under Kernel-> Change Kernel.

Any idea how to get Jupyter notebook to show the additional one installed?

MCG Code
  • 1,333
  • 5
  • 16
  • 24

2 Answers2

2

You can have a look at this and install the required kernel

https://ipython.readthedocs.io/en/latest/install/kernel_install.html

2

If you want to manually configure (add) Python 2.7 environment, try this:

conda create -n py27 python=2.7
conda activate py27
conda install notebook ipykernel
ipython kernel install --user
baduker
  • 19,152
  • 9
  • 33
  • 56