# Installation **TODO:** write this section. ## Developer dependencies First, clone the repository: ```bash git clone git@github.com:ocean-ai-data-challenges/dc-tools.git ``` Then, inside the newly-created `dc-tools` directory: ```bash conda create -n dctools python=3.13 esmpy poetry conda activate dctools poetry install --with dev ``` The reason for this somewhat hacky installation is [a known bug with `xesmf`](https://github.com/pangeo-data/xESMF/issues/269) which causes import errors. If you're encountering similar problems consider reinstalling the environment. ## Documentation dependencies If instead you want to modify these documentation pages, follow the steps in the ["Developer dependencies"](#developer-dependencies) section. Then, modify the last command to use the `--with docs` option: ```bash poetry install --with docs ```