Installation#
Basic installation#
pip install dfm_tools
Miniforge/conda installation#
This is an example with conda, but you can also use any other python environment (plain python, pixi, etc):
python 3.10 to 3.13 are supported
download Miniforge3 from conda-forge.org and install it with the recommended settings.
open Miniforge Prompt
conda create --name dfm_tools_env python=3.12 git spyder -y(gitandspyderare optional)conda activate dfm_tools_envinstall latest dfm_tools release (stable):
pip install dfm_tools -U(-Uis for updating)to remove environment when necessary:
conda remove -n dfm_tools_env --all