https://github.com/GeoscienceAustralia/PyRate
Tip revision: 8203989e7d9b675491e79610cff04728d8dc3973 authored by Matt Garthwaite on 18 October 2021, 03:58:53 UTC
add details about SNAP software to doco [ci skip]
add details about SNAP software to doco [ci skip]
Tip revision: 8203989
nci_install.sh
#!/bin/bash
rm -rf ~/PyRateVenv
rm -rf ~/PyRate
git clone https://github.com/GeoscienceAustralia/PyRate.git
module purge
module load python3/3.7.4
module load gdal/3.0.2
module load openmpi/4.0.2
export PYTHONPATH=/apps/gdal/3.0.2/lib64/python3.7/site-packages:$PYTHONPATH
python3 -m venv ~/PyRateVenv
source ~/PyRateVenv/bin/activate
cd ~/PyRate
python setup.py install
