From 2e2882a7bbea8b10f3f6df06a1302d01b30e1d99 Mon Sep 17 00:00:00 2001 From: Justus Magin Date: Tue, 12 May 2026 16:31:57 +0200 Subject: [PATCH] simple readme with usage instructions --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..a4d9f73 --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +# grid4earth packages + +This repository provides requirement files that can be used to install a curated set of the packages developed as part of the Grid4Earth project. + +## Usage + +To install a particular version with `pip`, use (replacing `2026.05.4` with the desired release): + +```sh +wget -q https://github.com/GRID4EARTH/packages/releases/download/v2026.05.4/requirements.txt +pip install -r requirements.txt +``` + +Or, with conda: + +```sh +wget -q https://github.com/GRID4EARTH/packages/releases/download/v2026.05.4/env.yml +conda env update -f env.yml -n +```