Installation#
Basic installation#
pip install dfm_tools
Recommended installation#
download Miniforge3 from the miniforge github and install it with the recommended settings.
open Miniforge Prompt
conda create --name dfm_tools_env python=3.12 git spyder -y
(git
andspyder
are optional)conda activate dfm_tools_env
install latest dfm_tools release (stable):
pip install dfm_tools -U
(-U
is for updating)alternatively install most recent dfm_tools version from github (might be unstable):
python -m pip install git+https://github.com/Deltares/dfm_tools
to remove environment when necessary:
conda remove -n dfm_tools_env --all
Potential git/conda issues with installation#
long paths error? Check this Github issue
OpenSSL error? Fix your conda base env by doing this or maybe that. Let us know if you encounter this issue.