Create a new conda environment
`mamba create -n jupyter -c conda-forge jupyterlab pandas`
Activate the conda environment
`conda activate jupyter`
Find the installed packages (optional)
`conda list`
Start jupyter lab by typing
`jupyter-lab`
Test if it works by importing a pakcage
`import pandas`
Press Control+C to exit the server