I\'m trying to set a good environnement for doing some scientific stuff with python. To do so, I installed Jupyter & miniconda.
Then I want to be able to have di
Assuming your conda-env is named cenv, it is as simple as :
$ conda activate cenv
(cenv)$ conda install ipykernel
(cenv)$ ipython kernel install --user --name=
(cenv($ conda deactivate
If you restart your jupyter notebook/lab you will be able to see the new kernel available.
PS: If you are using virtualenv etc. the above steps hold good.