Created
December 21, 2013 21:13
-
-
Save pjankiewicz/8075167 to your computer and use it in GitHub Desktop.
Install R 2.15 - linux mint
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /tmp | |
wget http://cran.r-project.org/src/base/R-2/R-2.15.2.tar.gz | |
# You can download latest R version from CRAN | |
# Go to http://cran.r-project.org/ | |
# or Go & choose what u want:- http://cran.r-project.org/src/base/ | |
# Untar | |
tar -xzf R-2.15.2.tar.gz | |
cd R-2.15.2 | |
# need to build shared library (--enable-R-shlib) | |
sudo ./configure --enable-R-shlib # --prefix=... | |
sudo make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment