From 6eb1beab9e25d4cb157dca78865bf44c59011cb3 Mon Sep 17 00:00:00 2001
From: Farid Mohammadi <farid.mohammadi@iws.uni-stuttgart.de>
Date: Tue, 12 Apr 2022 18:22:39 +0200
Subject: [PATCH] [README] add description on installing the package via the
 master branch

---
 README.md | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 128ac207b..86e8f03b0 100644
--- a/README.md
+++ b/README.md
@@ -21,10 +21,17 @@ To create and activate the virtual environment run the following command in the
 ```
 You can replace `bayes_env` with your preferred name. For more information on virtual environments see [this link](https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments/).
 
-Now, you can install my project with pip inside the venv with:
+Now, you can install the latest release of the package on PyPI inside the venv with:
 ```bash
   pip install bayesvalidrox
 ```
+and installing the version on the master branch can be done by cloning this repo and installing:
+```bash
+  git clone https://git.iws.uni-stuttgart.de/inversemodeling/bayesvalidrox.git
+  cd bayesvalidrox
+  pip install .
+```
+
 ## Features
 * Surrogate modeling with Polynomial Chaos Expansion
 * Global sensitivity analysis using Sobol Indices
-- 
GitLab