How to add your Conda environment to your jupyter notebook

--

Suppose you have a conda environment name as “YOUR_ENVIRONMENT_NAME”, then the following two steps can make it work.

conda install -c anaconda ipykernel
python -m ipykernel install --user --name=YOUR_ENVIRONMENT_NAME

--

--

No responses yet