Jupyter conda kernel

PHOTO EMBED

Wed May 12 2021 00:33:13 GMT+0000 (Coordinated Universal Time)

Saved by @madhushan #jupyter #anaconda

conda create -n my-conda-env                               # creates new virtual env
conda activate my-conda-env                                # activate environment in terminal
conda install ipykernel                                    # install Python kernel in new conda env
ipython kernel install --user --name=my-conda-env-kernel   # configure Jupyter to use Python kernel
jupyter notebook                                           # run jupyter from system
content_copyCOPY