From 79d2a21d6821d8fd26717069ed4b69e4ac9b0fe4 Mon Sep 17 00:00:00 2001 From: jdelguerrero Date: Tue, 16 Sep 2025 14:54:24 +0200 Subject: [PATCH] Modify the Python version required for the repository setup. It was outdated (v 3.8). The actual required version is 3.11 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5ee873938..6a48ca45d 100644 --- a/README.md +++ b/README.md @@ -33,10 +33,10 @@ $ pip install --requirement requirements.txt If your system Python is not compatible with the required packages, we suggest that you install Python in a Conda environment using the [Micromamba](https://mamba.readthedocs.io/en/latest/user_guide/micromamba.html) package manager for Conda. - Begin by [installing the Micromamba package manager](https://mamba.readthedocs.io/en/latest/installation/micromamba-installation.html). -- Install Python 3.8 in a new environment. +- Install Python 3.11 in a new environment. ``` $ micromamba env create --name ulhpc-docs-python -$ micromamba install python=3.8 --channel conda-forge --name ulhpc-docs-python +$ micromamba install python=3.11 --channel conda-forge --name ulhpc-docs-python ``` - You now have 2 options. First options is to install the required python packages directly in the Conda environment. ```