From 2e406f5c77e6fe7805aa101b768deff58d251266 Mon Sep 17 00:00:00 2001 From: Florez Ospina Juan Felipe Date: Fri, 18 Oct 2024 09:48:22 +0200 Subject: [PATCH] Added python env installation instructions. --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index e69de29..d8d8f15 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,18 @@ +## Installation + +Open a terminal or Anaconda Prompt with access to `conda', and follow these steps to set up the environment for the Flagging App: + +1. **Update Conda:** + `conda update conda --yes` + +2. **Create a New Conda Environment:** + `conda create -n flaggingapp_env python=3.10 jupyter h5py numpy pandas scipy pyyaml plotly dash --yes` + +3. **Activate the Environment:** + `conda activate flaggingapp_env` + +4. **Install Jupyter Kernel:** + `python -m ipykernel install --user --name flaggingapp_env --display-name "Python (flaggingapp_env)"` + +5. **Install Additional Package:** + `pip install igor2`