git clone https://github.com/embed2scale/AI-for-Good-Tutorial-2026.git
cd AI-for-Good-Tutorial-2026python3.12 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip install git+https://github.com/terrastackai/terratorch.git
git lfs install --skip-smudge
git clone https://github.com/embed2scale/NeuCo-Bench.git
pip install -r requirements.txtNote: If TerraTorch fails to install because of GDAL or other geospatial libs, continue with Section 3 and retry.
GDAL is required for geospatial I/O. Skip if TerraTorch installed without errors.
brew install gdal
pip install gdalsudo apt-get update
sudo apt-get install -y gdal-bin libgdal-dev
pip install gdalpip install gdalThen retry:
pip install git+https://github.com/terrastackai/terratorch.gitpython scripts/download_ssl4eo_downstream.py --out data/neuco_ssl4eo_downstream --labels-onlyOnly needed for full end‑to‑end workflows (Part 3).
python scripts/download_ssl4eo_downstream.py --out data/neuco_ssl4eo_downstream --modalities s2l1cWe will launch Jupyter via:
jupyter notebookIf you run into kernel issues, register a clean one:
python -m ipykernel install --user --name tutorial-kernel --display-name "Tutorial Kernel"You're fully set up. Head back to the main README to start the tutorial.