From 240a389eb87a8316e0eb3d18565c364a3af0ad04 Mon Sep 17 00:00:00 2001 From: Liz Ji Date: Wed, 15 Apr 2020 13:17:41 -0700 Subject: [PATCH] Modified installment part. --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c826fbb..0b8f8cb 100644 --- a/README.md +++ b/README.md @@ -6,14 +6,18 @@ on a Monte Carlo Expectation-Maximization algorithm. Building and Installing ======================= - -First, download `epievo` in recursive mode, +`epievo` requires a C++ compiler that supports the C++11 standard. +First, clone `smithlab_cpp` source code repo in the directory you want, +and set the environment variable: ``` -git clone --recursive https://github.com/smithlabcode/epievo.git +git clone git@github.com:smithlabcode/smithlab_cpp.git +export SMITHLAB_CPP=$PWD/smithlab_cpp ``` -then install `epievo` by running +Then, download `epievo` source code and compile: ``` +git clone https://github.com/smithlabcode/epievo.git cd epievo +make make install ```