While solving our problems on python, Many of us might have faced the situation of kernels, the specific package supports only python 2.7 and require python 3 and there are a lot of issues while installing python kernels and running it with Jupyter notebook side by side. Here’s my solution of running python 2 and 3 on the same machine.
System Overview: I ran the kernels on MacOS Mojave version 10.14.5
Its a 2 step process:
- Check the available kernels:
- jupyter kernelspec list
- Install the Kernel:
- python3 -m ipykernel install –user
Repeat 1st step to check the installed kernels.