From b885847512fec607b3b6f8eb16bc79cdb91b2784 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Fri, 8 Aug 2025 12:30:31 +0100 Subject: Mark virtual environment creation as optional. Not everyone may want to create a virtual environment. For example, on some HPC machines, creating a virtual environment is complicated or does not work. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9fdc466..2c5b125 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ pyhegp is a Python library and CLI utility implementing homomorphic encryption o - [Using encrypted genotypes and phenotypes for collaborative genomic analyses to maintain data confidentiality](https://academic.oup.com/genetics/article/226/3/iyad210/7470728) # Install development version - +## Create a virtual environment (optional) In a new directory, create a python virtual environment and activate it. ``` mkdir pyhegp @@ -13,7 +13,8 @@ cd pyhegp python3 -m venv .venv source .venv/bin/activate ``` -Install the development version of pyhegp into the virtual environment. +## Install pyhegp +Install the development version of pyhegp. If you are in a virtual environment, pyhegp will be installed in it. If you skipped the previous step, pyhegp will be installed in your user install directory (that's typically in your home directory). ``` pip install git+https://github.com/encryption4genetics/pyhegp ``` -- cgit 1.4.1