在Ubuntu 16.04中安装R 3.0.2

时间:2016-10-05 09:53:39

标签: r ubuntu apt

我在Ubuntu 16.04中尝试安装R 3.0.2时遇到了麻烦。我尝试添加旧版R的存储库,但在apt-get中找不到R 3.0.2的包。有没有人尝试在较新版本的Ubuntu上安装旧版本的R?我可以知道步骤是什么吗?

我还尝试在apt-get install命令中指定版本,但是找不到合适的包。

2 个答案:

答案 0 :(得分:1)

我认为你的最佳选择是编译R.如果你从未做过这样的事情,请在终端中按照这个小脚本:

# install common R dependencies
sudo apt-get install gcc \ 
                g++ \ 
                gfortran \ 
                bzip2 \ 
                libbz2-dev \ 
                xorg-dev \ 
                liblzma-dev \ 
                libreadline-dev \ 
                libpcre++-dev \ 
                libcurl-dev \ 
                libpango1.0-dev


mkdir R_alternatives
cd R_alternatives
mkdir src
mkdir 3.0.2
cd src
wget https://cran.r-project.org/src/base/R-3/R-3.0.2.tar.gz
tar -xvf R-3.0.2.tar.gz
cd R-3.0.2

#In my opinion is better to compile in one folder (avoid uncompress tar.gz source again, if you get any errors)

mkdir BuildDir
cd BuildDir
# this step will take around 2 minutes
./../configure --with-readline=no --with-x=no --prefix=/home/'user'/R_alternatives/3.0.2
# These two will take longer!!
make
make install

# following the prefix in 'configure' your R libraries are going to be installed in /home/'user'/R_alternatives/3.0.2/lib64/R/library/
# Hence, each time you compile a new R version, it will have its own libraries (this avoid R packages versions problems)
# If you wish more than one library version for the same R version, you must create a new folder and then run
export R_LIBS=/'path_to_your_new_folder'

# If you plan to use this R version in RStudio, you have to edit ~/.bash_profile, therefore you must run:
vi ~/.bash_profile
#or, It is up to you!
gedit ~/.bash_profile

#Then you put this line in end of the file

PATH=/home/'user'/R_alternatives/3.0.2/bin:$PATH
export PATH

# OR...

RSTUDIO_WHICH_R=/home/'user'/R_alternatives/3.0.2/bin/R
export RSTUDIO_WHICH_R

#PS: You can also set the R_LIBS here, in the same way!

答案 1 :(得分:0)

首先,请参阅here了解类似的&关于SO的老问题。

各种Ubuntu版本(主要是LTS版本)的旧R版本的预编译二进制文件可从以下网站获得:

textView.textContainer.exclusionPaths

不幸的是,似乎没有针对xenial的R 3.0.2 deb软件包;只有精确仍然有R 3.0.2包。你可以尝试在xenial中安装精确的软件包,但这可能带有自己的问题集。

最好根据Facottons建议从源代码编译。