Published
- 1 min read
Jupyter Notebook doesn`t show new environments
The solution for this is noted below
Jupyter Notebook doesn`t show new environments
Solution
To use jupyter notebook inside a virtual environment, ipykernal is required to be installed in your venv
# 1)Inside your virtual environment:
pip install ipykernel
# 2)Then run the kernel "self-install" script:
python -m ipykernel install --user --name=my-virtualenv-name
Try other methods by searching on the site. That is if this doesn’t work