Setup OSPSuite-R on CentOS7
Install tools and libraries
Install Mono 5.18
Note: other Mono versions will not work! If you have a newer Mono version already installed - deinstall it first.
Install .NET
Install R
Alternative 1: install the latest R version
Alternative 2: install a specific R version
Download R version of interest from https://cran.r-project.org/src/base/R-3/ (e.g. R-3.5.2.tar.gz), then execute
Install R packages
Download rClr_X.Y.Z_CentOS7.tar.gz from https://github.com/Open-Systems-Pharmacology/rClr/releases/latest
Download ospsuite_x.y.z_centOS7.tar.gz from https://github.com/Open-Systems-Pharmacology/OSPSuite-R/releases/latest
Start R and install the packages (replace x.y.z with your package versions)
Adjust LD_LIBRARY_PATH
Before ospsuite-R package can be used in R, LD_LIBRARY_PATH environment variable must be extended with <R_Lib_Path>/ospsuite/lib
, e.g.:
export LD_LIBRARY_PATH=/usr/local/lib64/R/library/ospsuite/lib:$LD_LIBRARY_PATH
Last updated