Skip to content

CDDS Installation

Warning

This page is still work-in-progress! Please work closely with the CDDS team when installing CDDS.

Note

This installation process requires a Conda installation of at least v4.9, earlier versions will raise errors around the setting of environment variables as part of the Conda environment creation commands

  • Login to the cdds account (please see Science Shared Accounts for more details): bash xsudo -u cdds bash -l
  • Activate Conda environment (to make installation quicker):
    conda activate
    
  • Obtain environment file:
    wget https://github.com/MetOffice/CDDS/blob/<tagname>/environment.yml
    
    or download it manually from Github.
  • Update locations pointed to within the environment file:
    sed -i "s/<location>/X.Y.Z/" environment.yml
    
  • Create environment
    conda env create -f environment.yml -p $HOME/conda_environments/cdds-X.Y.Z
    
    where X.Y.Z is the new version number of CDDS

Note

This has been updated following the roll out of Conda to MO systems. If the -p option is omitted then the installation will end up under $HOME/.conda and will not be visible to other users.

Info

If the wheel installation fails then you can end up with #!python rather than the full paths – this is known to be caused by not having _DEV updated in the packages, possibly due to tagging without pulling the release branch from the repository first

  • Activate environment and set CDDS_ENV_COMMAND variable:
    conda activate cdds-X.Y.Z
    conda env config vars set CDDS_ENV_COMMAND="conda activate $HOME/conda_environments/cdds-X.Y.Z"
    
    where X.Y.Z is the new version number of CDDS ```
  • Set platform in the CDDS_PLATFORM variable:
    conda activate cdds-X.Y.Z
    conda env config vars set CDDS_PLATFORM=AZURE
    
  • Confirm environment variables:
    # get out of cdds environment
    conda deactivate
    # load environment again
    conda activate cdds-X.Y.Z
    # print environment variables
    echo $LC_ALL
    echo $CDDS_ENV_COMMAND
    echo $CDDS_PARTITION
    
    You should see en_GB.UTF-8 for LC_ALL plus the command set above for CDDS_ENV_COMMAND and the CDDS_PARTITION.

Note

This installation process requires a Conda installation of at least v4.9, earlier versions will raise errors around the setting of environment variables as part of the Conda environment creation commands

  • Login to the cdds account (please see Science Shared Accounts for more details): bash xsudo -u cdds bash -l
  • Activate Conda mamba environment (to make installation quicker):
    . $HOME/software/miniconda3/bin/activate mamba
    
  • Obtain environment file:
    wget https://github.com/MetOffice/CDDS/blob/<tagname>/environment.yml
    
    or download it manually from Github.
  • Update locations pointed to within the environment file:
    sed -i "s/<location>/X.Y.Z/" environment.yml
    
  • Create environment
    mamba env create -f environment.yml -p $HOME/software/miniconda3/envs/cdds-X.Y.Z
    
    where X.Y.Z is the new version number of CDDS

Note

This has been updated following the roll out of Conda to MO systems. If the -p option is omitted then the installation will end up under $HOME/.conda and will not be visible to other users.

Info

If the wheel installation fails then you can end up with #!python rather than the full paths – this is known to be caused by not having _DEV updated in the packages, possibly due to tagging without pulling the release branch from the repository first

  • Activate environment and set CDDS_ENV_COMMAND variable:
    conda activate cdds-X.Y.Z
    conda env config vars set CDDS_ENV_COMMAND="source $HOME/software/miniconda3/bin/activate cdds-X.Y.Z"
    
    where X.Y.Z is the new version number of CDDS ```
  • Set platform in the CDDS_PLATFORM variable:
    conda activate cdds-X.Y.Z
    conda env config vars set CDDS_PLATFORM=EXETER
    
  • Confirm environment variables:
    # get out of cdds environment
    conda deactivate
    # load environment again
    conda activate cdds-X.Y.Z
    # print environment variables
    echo $LC_ALL
    echo $CDDS_ENV_COMMAND
    echo $CDDS_PARTITION
    
    You should see en_GB.UTF-8 for LC_ALL plus the command set above for CDDS_ENV_COMMAND and the CDDS_PARTITION.

Warning

This section will be updated soon

Info

The recommended location for installation is miniconda3 environment under /gws/smf/j04/cmip6_prep/cdds-env-python3/miniconda3

  • Login to the sciX JASMIN server.
  • Activate conda without loading an environment
    . /gws/smf/j04/cmip6_prep/cdds-env-python3/miniconda3/bin/activate
    
  • Obtain environment file
    wget https://github.com/MetOffice/CDDS/blob/<tagname>/environment.yml
    
    or download it manually from Github
  • Update locations pointed to within the environment file:
    sed -i "s/<location>/X.Y.Z/" environment.yml
    
  • Create environment
    conda env create -f environment.yml -n cdds-X.Y.Z
    
    where X.Y.Z is the new version number of CDDS
  • Activate environment and set CDDS_ENV_COMMAND variable
    conda activate cdds-X.Y.Z
    conda env config vars set CDDS_ENV_COMMAND="source /gws/smf/j04/cmip6_prep/cdds-env-python3/miniconda3/bin/activate cdds-X.Y.Z"
    
  • Set OS partition at CDDS_PARTITION variable
    conda activate cdds-X.Y.Z
    conda env config vars set CDDS_PARTITION=Jasmin
    
  • Install nco library
    conda install -c conda-forge nco
    
  • Confirm environment variables:
    # get out of cdds environment
    conda deactivate
    # load environment again
    conda activate cdds-X.Y.Z
    # print environment variables
    echo $LC_ALL
    echo $CDDS_ENV_COMMAND
    echo $CDDS_PARITION
    
    You should see en_GB.UTF-8 for LC_ALL and the command set above for CDDS_ENV_COMMAND and CDDS_PARTITION.