1 - Show the list of conda virtual environment
conda env list2 - Create a new virtual environment named trial
conda create --name trial3 - Activate the new env
conda activate trial4 - Install ipykernel
conda install -c anaconda ipykernel5 - Add the trial kernel in jupyter
python -m ipykernel install --user --name=trial6 - Launch jupyter notebook
jupyter.exe notebook7 - Open/Create a jupyter notebook and change kernel to trial inside the kernel/change kernel 8 - You should see the name of conda env (trial) on the right