- conda create -n my_env python=3.10
- conda activate my_env
- conda install jupyter
- which python (should point to the one from new environment)
- python -m ipykernel install --user --name="my_env" --display-name="my_env (Python 3.10)"
- jupyter kernelspec list
- !python3 -m jupyter kernelspec list (from notebook cell)
- conda install -c conda-forge ydata-profiling -n my_env