https://github.com/GeoscienceAustralia/PyRate
Tip revision: 29ce59c68bc134810a3df70cdcce0284e8d35980 authored by Matt Garthwaite on 26 June 2020, 00:13:01 UTC
Merge pull request #274 from GeoscienceAustralia/develop
Merge pull request #274 from GeoscienceAustralia/develop
Tip revision: 29ce59c
create_html_documentation.sh
#!/bin/bash
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
source ~/PyRateVenv/bin/activate
cd ~/PyRate/docs
make html
echo "Use following cmd to copy file to local machine:"
cd ~
echo "scp -r `whoami`@gadi.nci.org.au:`pwd ~`/PyRate/docs/_build/html C:/preview"