How to run jupyter on vscode
- activate your virtual enviroment and install ipykernel
pip install --upgrade ipykernel
- install the kernel in the env
conda install -n envName ipykernel
- config the kernel
python -m ipykernel install --user --name envName --display-name "envName"
- add the Jupyter extension.
- open a
.ipynbfile and click the env button on the upper right corner. - select the env you have installed the kernel.
Show all the kernel
jupyter kernelspec listRemove the kernel
jupyter kernelspec uninstall envName