How to access new version of R in linux

2019-09-11 11:27发布

I got cluster account from my college, and got installed R 2.13.0 in linux cluster(redhat 2.6.18-128.el5). I followed the below step to get the latest version of R

Step 1: download latest version of R from the following link : https://cran.r-project.org/sources.html(i downloaded R-3.2.2)

Step 2: upload it into your cluster(I'm using WinSCP in windows 8.1)

Step 3: unpack it using the following command tar -xf R-x.y.z.tar.gz

in my case its tar -xf R-3.2.2.tar.gz

Step 4: go to that directory using the code cd R-3.2.2

Step 5: type ./configure

Step 6: after the completion of config, type make

Step 7: Then check the built system works correctly by make check

Then I typed R, it's just loading R-2.13.0 only. Even I entered the R-3.2.2 folder(bin) and tried, still it's not loading new version.

I don't have any sudoers rights(Administrator privileges). cluster is having 32 nodes.

Is there any way to overcome this?? Thanks

0条回答
登录 后发表回答