Compilation and Installation
Procedure
- Use PuTTY to log in to the server as the root user.
- Go to the installation package directory.
cd /path/to/absolute
- Install R.
yum install R
- Add a cran image.
- Create a /root/.Rprofile file.
vi /root/.Rprofile
- Press i to enter the edit mode and add the following content. If the file already exists, add it to the end of the file.
options("repos" = c(CRAN="https://mirrors.tuna.tsinghua.edu.cn/CRAN/")) - Press Esc, type :wq!, and press Enter to save the settings and exit.
- Create a /root/.Rprofile file.
- Start R.
R
- Install numDeriv.
install.packages("numDeriv") - Install ABSOLUTE.
install.packages("ABSOLUTE_1.0.6.tar.gz")
Parent topic: ABSOLUTE 1.0.6 Porting Guide (CentOS 7.6)