From 282c65d43f1f66208b756ca5ffa6680764e43603 Mon Sep 17 00:00:00 2001 From: Daniel Seal Date: Mon, 28 Apr 2025 22:02:24 +0100 Subject: [PATCH] updated README to confirm python version --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0958d783..6746899b 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Tree Crown Detection and Delineation in a Temperate Deciduous Forest from UAV RG ## Requirements -- Python 3.8+ +- Python ≥3.8, <3.12 - [gdal](https://gdal.org/download.html) geospatial libraries - [PyTorch ≥ 1.8 and torchvision](https://pytorch.org/get-started/previous-versions/) versions that match - For training models GPU access (with CUDA) is recommended @@ -60,7 +60,15 @@ See [Installation Instructions](https://patball1.github.io/detectree2/installati ### conda -*Under development* +``` +ENV_NAME="env_name” +conda create -n $ENV_NAME python=3.11 +conda activate $ENV_NAME +conda install -c conda-forge gdal rtree pytorch torchvision torchaudio +pip install git+https://github.com/PatBall1/detectree2.git +``` + +Set the `ENV_NAME` to the desired name of your virtual environment. ## Getting started