This method doesn’t actually get your environment to show in Jupyter Notebooks, but it is worth trying. If you install jupyter in any environment and run jupyter notebook from that environment the notebook will use the kernel from active environment. The kenel will show with the default name Python 3 but we can verify this works by doing the following.
- Activate your environment, install jupyter, and run jupyter notebook.
Ignore this step if you have already created a conda environment.
(base)$ create -p ./new-env
(base)$ conda activate D:\pythoncode\new-env
(D:\pythoncode\new-env)$ conda install jupyter
(D:\pythoncode\new-env)$ jupyter notebook
- Run the following code in your notebook to confirm that you are using the correct kernel.
import os
print (os.environ['CONDA_DEFAULT_ENV'])