From 2aa69aeb44e25079bc8160ffb4e268769f769b8b Mon Sep 17 00:00:00 2001 From: junos Date: Wed, 23 Dec 2020 17:16:11 +0100 Subject: [PATCH] Write basic installation instructions. --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c933aeb..b8c733f 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,19 @@ # STRAW2analysis -All analysis for the STRAW project. \ No newline at end of file +All analysis for the STRAW project. + +To install first: + +* Create a conda virtual environment with the correct Python version. + +```commandline +conda create --name straw2analysis python=3.9 +conda activate straw2analysis +``` + +* Next, install all necessary libraries. + +```commandline +cd config +conda install --file environment.yml +```