I am trying to launch Jupyter Lab from my base environment, and then to be able to choose my other conda envs as kernels.
I followed the suggested approach.
Assuming "cenv" is the new environment:
$ conda activate cenv
(cenv)$ conda install ipykernel
(cenv)$ ipython kernel install --user --name=<any_name_for_kernel>
(cenv)$ conda deactivate
However, when I open JupyterLab and change to the new kernel, opening a terminal (inside JupyterLab) and typing:
conda info
it prints that the active environment is the "base", not the "cenv".
Shouldn't it print the "cenv" environment? Thanks in advance.