Installing Epitome¶
Note: Epitome is configured for tensorflow 2/Cuda 9. If you have a different version of cuda, update tensorflow-gpu version accordingly.
Requirements¶
python 3.7
Installing Tensorflow¶
In order to run Epitome as efficiently as possible, you should install tensorflow from source. If you have not installed tensorflow prior to installing Epitome, Epitome will install tensorflow from pip, which will not be optimized for your hardware.
Installation from Pip¶
Create and activate a pytion 3.7 conda venv:
conda create --name EpitomeEnv python=3.7
source activate EpitomeEnv
Install Epitome from Pypi:
pip install epitome
Installation from Source¶
Create and activate a pytion 3.7 conda venv:
conda create --name EpitomeEnv python=3.7
source activate EpitomeEnv
Get Epitome code:
git clone https://github.com/YosefLab/epitome.git
cd epitome
Install Epitome and its requirements
pip install -e .