diff options
author | Arun Isaac | 2025-08-08 12:30:31 +0100 |
---|---|---|
committer | Arun Isaac | 2025-08-08 12:51:30 +0100 |
commit | b885847512fec607b3b6f8eb16bc79cdb91b2784 (patch) | |
tree | 36fc0ddd6cabb272904a9b4b581bc67368678f96 /README.md | |
parent | 519a578061a21db05dcac8c4911bec58209c0d78 (diff) | |
download | pyhegp-b885847512fec607b3b6f8eb16bc79cdb91b2784.tar.gz pyhegp-b885847512fec607b3b6f8eb16bc79cdb91b2784.tar.lz pyhegp-b885847512fec607b3b6f8eb16bc79cdb91b2784.zip |
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.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 5 |
1 files 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 ``` |