Install python packages in virtual Conda environment

conda install will install into the active environment, which is trying to install into the shared environment you don’t have write permissions to. Use conda create instead to create a new environment e.g. to create one named named tempest:

conda create -n tempest -c conda-forge tempest-extremes

You will then need to conda activate the environment to use it.