# Add conda virtual env to Jupyter notebook ###### tags: `conda` :::info replace all $(myenv) with the name of virtual env ::: ## Step1. Activate virtual env ``` conda activate $(myenv) ``` ## Step2. Install ipykernel ipykernel provides Ipython kernel for jupyter ``` pip install --user ipykernel ``` ## Step3. Add virtual env ``` python -m ipykernel install --user --name=$(myenv) ``` ## Step4. Done! The kernel is now created. You can see it in the kernel menu after starting Jupyter Notebook.