Downloading CCPP-SCM

Overview

Teaching: 0 min
Exercises: 0 min
Questions
  • How do I download CCPP-SCM?

Objectives

We will use GMU Hopper to run this model. We will now download the model and all the setup files needed for it. These are one-time steps.

Go to your /home/username/classes/clim670/ directory

$ cd /home/cstan/classes/clim670

Download the CCPP-SCM from Github

git clone --recursive -b v6.0.0 https://github.com/NCAR/ccpp-scm ccpp-scm-6.0 

This will take a while …

Change to the ccpp-scm-6.0 directory

$ cd ccpp-scm-6.0

Let’s take a look in that directory. The recursive option in the git clone command clones the main ccpp-scm repository and all subrepositories (ccpp-physics and ccpp-framework). Using this option, there is no need to execute git submodule init and git submodule update.

Key Points