conda create --name climlab-env python=3.9
conda info --env
conda activate climlab-env
conda install -c conda-forge climlab
conda deactivate climlab-env
If jupyter notebook cannot find the new environment, one can do this:
conda install -n climlab-env ipykernel
python -m ipykernel install --name climlab-env
Then restart jupyter notebook and change the kernel!
conda install -c conda-forge matplotlib
How to invoke the specified environment in Jupyter notebook?
https://blog.csdn.net/YJ_tech_fan/article/details/104201053
Last update: 11/04/2022