kuniga.me > Docs > Jupyter Cheatsheet
Only need the first time. Create a venv following this notes:
mkdir ~/my_env
python3 -m venv ~/my_env
source ~/my_env/activateInstall Jupyter:
pip install jupyterCreate a venv following this notes:
mkdir ~/my_env
python3 -m venv ~/my_env
source ~/my_env/activateInstall the kernel module
pip install ipython ipykernelCreate a kernel for the venv:
ipython kernel install --user --name=my_envStart Jupyter:
jupyter notebookIn the UI, make sure to select the my_env kernel. You can install modules via pip now, without messing with other environments.