From d04f734b9e27000dddba0166fc2313ed5c7aac4b Mon Sep 17 00:00:00 2001 From: Michael Ernst Date: Wed, 15 May 2024 15:42:35 -0700 Subject: [PATCH] Brevity in README --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 3f86f15a61..f6b7bb3120 100644 --- a/README.md +++ b/README.md @@ -8,25 +8,25 @@ ### Python -To install all the python requirements create a conda environment: +To install all the Python requirements, create a conda or mamba environment: -With mamba (faster https://github.com/mamba-org/mamba): +With conda: ```bash -mamba env create -f environment.yml -mamba activate AST +conda env create -f environment.yml +conda activate AST ``` -With conda: +With mamba (faster https://github.com/mamba-org/mamba): ```bash -conda env create -f environment.yml -conda activate AST +mamba env create -f environment.yml +mamba activate AST ``` ### Maven -Make sure you use maven version 3.9.*. +You must use Maven version 3.9.*. ### Ubuntu @@ -50,7 +50,7 @@ brew install gh ### Java -Make sure you install Java 8, 11 and 17. You need to set the `JAVA8_HOME`, `JAVA11_HOME` and `JAVA17_HOME` environment variables to the respective Java installations. +You must install Java 8, 11 and 17. You must set the `JAVA8_HOME`, `JAVA11_HOME` and `JAVA17_HOME` environment variables to the respective Java installations. ---