Post

Setting Jupyter Kernel according to venv of python

In this post, when i use jupyter notebook explain how to add venv of python.

Setting venv of python

  • activate.bat 또는 source activate 실행

Setting Jupyter Notebook

1
pip install jupyter jupyter notebook

Install ipkernel to add Jyputer Kernel

1
pip install ipykernel

Add Jupyter Kernel

1
python -m ipykernel install --user --name "virtual env name" --display-name "shown name of diplay"

Uninstall Jupyter Kernel

1
jupyter kernelspec uninstall .venv

Reference

This post is licensed under CC BY 4.0 by the author.