Instal Jupyter Notebook
# With anaconda
conda install -c conda-forge notebook
# With pip
pip install jupyter notebook
Or Levitas
# With anaconda
conda install -c conda-forge notebook
# With pip
pip install jupyter notebook
# Install a pip package in the current Jupyter kernel
import sys
!{sys.executable} -m pip install numpy
# Install a conda package in the current Jupyter kernel
import sys
!conda install --yes --prefix {sys.prefix} numpy