Skip to content

Contribute

This page is also meant for internal documentation.

Editor setup

There is only setup files provided for VSCode and no other editor (yet). A list of extensions and some settings can be found in the .vscode. At the first start, VSCode should ask you if you want to install the recommended extension. The settings should be automaticly used by VSCode. Both should provide the developers with a better experience and enforce code-style.

Environment setup

Prereq:

  • uv: curl -LsSf https://astral.sh/uv/install.sh | sh
  • cuda (optional)

Install the python environment for CPU-only use:

uv sync --extra cpu

For CUDA support, first look up the version of CUDA you have installed:

nvidia-smi
# Look at the top right corner for the CUDA version

If the nvidia-smi command is not found, you might need to install the nvidia drivers. Be very cautious with the installation of the driver, rather read the documentation with care.

We currently support CUDA 11.8, 12.1, 12.4, and 12.6. Use one of the following commands respectively:

uv sync --extra cuda118
uv sync --extra cuda121
uv sync --extra cuda124
uv sync --extra cuda126

Sometimes the CUDA version must not match exactly, but it is recommended to use the exact version.

Training specific dependencies are optional and therefore not installed by default. To install them, add --extra training to the uv sync command, e.g.:

uv sync --extra cuda126 --extra training

psycopg2

The training dependencies depend on psycopg2, which requires postgresql installed on your system.

To see if the installation was successful, you can run the following command:

uv run darts --version

Writing docs

The documentation is managed with Material for MkDocs. The documentation related dependencies are separated from the main dependencies and can be installed with:

uv sync --group docs

Note

You should combine the --group docs with the extras you previously used, e.g. uv sync --extra training --extra cuda126 --group docs.

To start the documentation server for live-update, run:

uv run mkdocs serve

In general all mkdocs commands can be run with uv run mkdocs ....

The following code snipped can be put in the very first cell of a notebook to already to add logging and initialize earth engine.

import logging

from rich.logging import RichHandler
from rich import traceback

from darts.utils.earthengine import init_ee
from darts.utils.logging import LoggingManager

LoggingManager.setup_logging()
logging.basicConfig(
    level=logging.INFO,
    format="%(message)s",
    datefmt="[%X]",
    handlers=[RichHandler(rich_tracebacks=True)],
)
traceback.install(show_locals=True)  # Change to False if you encounter too large tracebacks
init_ee("ee-project")  # Replace with your project