Create a Spack environment to run the PTF
These instructions describe how to set up a Spack environment to run the PTF.
Info
To know more about Spack: Spack documentation
Here you can find some useful Spack commands.
If you are running the PTF on an HPC cluster (e.g., Leonardo), it is likely that Spack is available as a module. If so, skip step 1, load the spack module, and go to step 2.
1. Install Spack
Before installing Spack, check the system prerequisites that are needed to be present on your machine. Most of them are basic things that you likely already have (e.g., python>3.6, C/C++ compilers, make, tar, git,...), but still worth checking the full list.
Choose the directory on your machine where you want to download Spack (<FULLPATH-TO-SPACK-ROOT>), then run the following commands:
cd /<FULLPATH-TO-SPACK-ROOT>
git clone -c feature.manyFiles=true https://github.com/spack/spack.git
. spack/share/spack/setup-env.sh
. /<FULLPATH-TO-SPACK-ROOT>/spack/share/spack/setup-env.sh
2. Create an environment
Create and activate the Spack environment:
spack env create -d spack_env_name
spack env activate -p spack_env_name
3. Add Python and py-pip to the environment and install them
spack add python
spack add py-pip
spack -d install
spack info python
spack add pyhton@version
spack find
to see which packages have been installed.
If something failed, check our troubleshooting guide.
4. Install Python packages needed to run the PTF workflow in the environment
The required python packages are listed in the file requirements.txt
which can be found in the tsunami-digital-twin repo or downloaded here.
Type the following command:
pip install -r requirements.txt
A requirements file with specific versions of each python package installed with python 3.9.15 can be downloaded here.
Note that to install the python pacakge cartopy, GEOS needs to be installed as well. This is not a python package and it is possible that it is already installed locally. If so, then you do not need to do anything and the installation of cartopy should work. If, on the other hand, GEOS is not installed, then the installation of cartopy will fail. In this case, you can add GEOS as a spack package: spack add geos
, then spack install
Problems?
Check our troubleshooting guide.