From 562160f6ea6c3441c4943e0ab9f24d31846a0b71 Mon Sep 17 00:00:00 2001 From: AndySAnker Date: Sun, 3 Dec 2023 14:36:32 +0100 Subject: [PATCH] Added the addition of an environment with proper Python version to README.md file --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ef9f87b..dd1299c 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,14 @@ Here, we provide an optimised code for the calculation of the Debye scattering e # Installation +`DebyeCalculator` requires Python version >=3.9, <3.12. If needed, create an environment with any of these Python versions: +``` +conda create -n debyecalculator_env python=3.9``` + +``` +conda activate debyecalculator_env +``` + ## Install with [pip](https://pypi.org/project/DebyeCalculator/) Run the following command to install the __DebyeCalculator__ package. (**Requires**: Python >=3.9, <3.12) @@ -31,7 +39,7 @@ pip install DebyeCalculator ## Install locally -Run the following command to install the __DebyeCalculator__ package. +Run the following command to install the __DebyeCalculator__ package. (**Requires**: Python >=3.9, <3.12) ``` pip install . or