gpt4 book ai didi

r - 在 Ubuntu 16.04 中安装 R 3.0.2

转载 作者:行者123 更新时间:2023-12-04 19:15:28 28 4
gpt4 key购买 nike

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

我还尝试在 apt-get install 命令中指定版本,但没有找到正确的包。

最佳答案

我认为在您的情况下最好的选择是编译 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!

关于r - 在 Ubuntu 16.04 中安装 R 3.0.2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39870825/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com