1# Advance version
2pip install jupyterlab
3jupyter-lab
4
5#Classic Version
6pip install notebook
7jupyter notebook
1# to install jupyter notebook or jupyter lab, you can use pip or conda
2# jupyter notebook pip
3pip install notebook
4# jupyter notebook conda
5conda install -c conda-forge notebook
6# jupyter lab pip
7pip install jupyterlab
8# jupyter lab conda
9conda install -c conda-forge jupyterlab