Added python env installation instructions.

This commit is contained in:
2024-10-18 09:48:22 +02:00
parent dc96fce0bb
commit 2e406f5c77

View File

@ -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`