Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.32 KB

INSTALLATION.md

File metadata and controls

40 lines (29 loc) · 1.32 KB

Installation

  • You can install the development version of SelectSim from GitHub with:
# install.packages("devtools")
devtools::install_github("CSOgroup/SelectSim",dependencies = TRUE, build_vignettes = TRUE)

Installation with micromamba enviorment

micromamba is a tiny version of the mamba package manager (Like Conda). Refer website for it's installation guide.

Steps to follow after installing micromamba in a terminal:

micromamba create -n r_env r-essentials r-base
micromamba activate r_env
micromamba install conda-forge::r-devtools
micromamba install conda-forge::armadillo
micromamba install conda-forge::r-rcppparallel
micromamba install conda-forge::r-rfast

  • After this run R and install SelectSim R package as follows
# install.packages("devtools")
devtools::install_github("CSOgroup/SelectSim",dependencies = TRUE, build_vignettes = TRUE)

Alternative way install with provided enviorment.yml file.

micromamba create -f env.yml
micromamba activate r_env

  • After this run R and install SelectSim R package as follows
# install.packages("devtools")
devtools::install_github("CSOgroup/SelectSim",dependencies = TRUE, build_vignettes = TRUE)