Development install

This is for those who wish to contribute to the development of FIAT.

cd ~/{your path}

git clone https://github.com/Deltares/Delft-FIAT.git fiat
cd ~/{your path}/fiat

python make_env.py dev
conda env create -f environment.yml

conda activate fiat_dev
pip install -e .

There you go. FIAT is now installed on your local machine for development purposes.

Back to top