From e581f37aa722f9ccdbff09e0f80fc59983d71abd Mon Sep 17 00:00:00 2001
From: "Ian Grant (aider)" <ian.conway.grant@gmail.com>
Date: Sat, 17 May 2025 12:22:45 -0400
Subject: [PATCH] docs: update installation instructions to use conda
 environment.yml

---
 docs/process_gedi_granules_guide.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/process_gedi_granules_guide.md b/docs/process_gedi_granules_guide.md
index 90b87c0..4cf9cc7 100644
--- a/docs/process_gedi_granules_guide.md
+++ b/docs/process_gedi_granules_guide.md
@@ -4,11 +4,11 @@ This script processes a single set of GEDI L1B, L2A, and L4A granules locally to
 
 ## 1. Installation
 
-Ensure you have the required dependencies installed:
+Create and activate the conda environment using the provided `environment.yml`:
 
 ```bash
-pip install click h5py pyyaml rasterio
-pip install nmbim  # if installing from PyPI or editable install
+conda env create -f environment.yml
+conda activate nmbim-env
 ```
 
 ## 2. Basic CLI Usage
-- 
GitLab