PermafrostExecutorBlanca

From CSDMS
Revision as of 16:48, 19 March 2018 by Mpiper (talk | contribs) (Initial sections)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
wmt-permafrost executor on blanca

Instructions for installing and configuring a WMT executor on blanca.

--Mpiper (talk) 16:48, 19 March 2018 (MDT)

Set install directory

The install directory for this executor is /projects/mapi8461/wmt/permafrost.

install_dir=/projects/mapi8461/wmt/permafrost
mkdir -p $install_dir

Install Python

Install a Python distribution to be used locally by WMT. We like to use Miniconda.

cd $install_dir
curl https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -o miniconda.sh
bash ./miniconda.sh -f -b -p $(pwd)/conda
export PATH=$(pwd)/conda/bin:$PATH

If working with an existing Miniconda install, be sure to update everything before continuing:

conda update conda
conda update --all