Kernel Appeared In Jupyter Notebook But Not Working
I am planning to use virtual environment in jupyter notebook through the following steps: conda create -n test python==3.6 conda activate test ipython kernel install --user --name=
Solution 1:
Not sure what is causing the problem. But luckily I found a working solution.
First I removed the installed kernel with
jupyter kernelspec uninstall <kernelname>
then added again with ipykernel:
conda create -n test python==3.6
conda activate test
(test) λ pip install ipykernel
(test) λ python -m ipykernel install --name test --display-name "some name"
Post a Comment for "Kernel Appeared In Jupyter Notebook But Not Working"