User Tools

Site Tools


r-software

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
r-software [2016/04/22 12:00] joguyar-software [2019/08/08 20:01] aorth
Line 4: Line 4:
 ===== Information ===== ===== Information =====
  
-  * Latest version: 3.2.5+  * Version: 3.6 (3.6.1)
   * Added: February, 2015   * Added: February, 2015
-  * Updated: April2016 +  * Updated: August2019 
-  * Link: http://www.r-project.org/+  * Link: https://www.r-project.org/
  
 ===== Usage ===== ===== Usage =====
  
-=== See versions of R which are available === +See versions of R that are available: 
-<code>module avail R</code>+<code>module avail R</code> 
 + 
 +Load one version into your environment and run it: 
 +<code>$ module load R/3.6 
 +$ R</code> 
 + 
 +Here is a good resource on [[https://www.osc.edu/resources/getting_started/howto/howto_install_local_r_packages|installing R packages into user libraries]].
  
 ===== Installation ====== ===== Installation ======
-Notes from the sysadmin during installation:<code> +Notes from the sysadmin during installation
-$ cd /tmp + 
-$ wget http://cran.mirror.ac.za/src/base/R-3/R-3.2.5.tar.gz +First, compile the main R application with GCC 7 from Red Hat's ''devtoolset-7'' software collection: 
-$ tar -xvf R-3.2.5.tar.gz + 
-$ cd R-3.2.5 +<code>$ cd /tmp 
-$ scl enable devtoolset-2 bash +$ wget https://cran.r-project.org/src/base/R-3/R-3.6.1.tar.gz 
-$ sudo mkdir -p /export/apps/R/3.2.5 +$ tar xf R-3.6.1.tar.gz 
-$ sudo chown joguya:joguya /export/apps/R/3.2.5 +$ cd R-3.6.1 
-$ ./configure --enable-R-shlib --prefix=/export/apps/R/3.2.5+# install packages to enable capabilities in R 
 +$ sudo yum install libX11-devel libXaw-devel bzip2-devel libcurl-devel xz-devel readline-devel 
 +# install a newer compiler from Red Hat software collections 
 +$ sudo yum install devtoolset-7-gcc devtoolset-7-gcc-gfortran devtoolset-7-libquadmath-devel devtoolset-7-gcc-c++ 
 +$ scl enable devtoolset-7 bash 
 +$ ./configure --enable-R-shlib --prefix=/export/apps/R/3.6
 $ make -j4 $ make -j4
-make install +sudo mkdir -p /export/apps/R/3.6 
-$ sudo chown -R root:root /export/apps/R/3.2.5 +$ sudo chown aorth /export/apps/R/3.6 
-</code>+$ make install</code> 
 + 
 +Then install some common libraries used by our users (to save space and time): 
r-software.txt · Last modified: 2023/07/12 06:39 by aorth