From 68f38f49179ac9806cdc906e2efc86781ae72ff5 Mon Sep 17 00:00:00 2001 From: Allan Pais <62473329+Allan0820@users.noreply.github.com> Date: Wed, 15 Oct 2025 12:00:31 +0530 Subject: [PATCH] Update README.md Added minor changes for Python version >= 3.xx. Also ensures stability across dev envs. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 272315ea..5d927513 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,12 @@ This can be done either through PyPI (recommended) /BanditPAM/: python -m pip install -r requirements.txt /BanditPAM/: python -m pip install banditpam ``` +OR for Python >= 3.xx + virtual environment (through PyPI) +```python +/BanditPAM/: python3 -m venv . ; source ./bin/activate +/BanditPAM/: python3 -m pip install -r requirements.txt +/BanditPAM/: python3 -m pip install banditpam +``` OR through the source code via ```python /BanditPAM/: git submodule update --init --recursive