Skip to content

Installation

Paul edited this page Apr 24, 2017 · 3 revisions

We currently only provide binaries for Windows, Linux and Mac OS users will need to compile the software or use the R version.

Download the latest release of RTK here: https://github.com/hildebra/Rarefaction/releases

RTK R package

Launch R as usual. Then install from CRAN via:

install.packages('rtk')

Or if you want the newest bleeding edge version download the source from github. Then compile via:

git clone https://github.com/hildebra/Rarefaction
cd Rarefaction/r-package
R CMD INSTALL rtk

This will download the git repository and build the R-package from source. You will need the Rcpp and testhat package installed beforehand.

RTK C++ version

Windows

Download the latest release of RTK here: https://github.com/hildebra/Rarefaction/releases

Linux

You will need developer tools and git (recommended) installed. For debian/Ubuntu this is done via sudo apt-get install build-essential git Then compile from source:

git clone https://github.com/hildebra/Rarefaction
cd Rarefaction/rtk
make

Mac Os

You will need XCode and git installed.

git clone https://github.com/hildebra/Rarefaction
cd Rarefaction/rtk
make
Clone this wiki locally