大家好,我是邓飞。
最近星球里面的小伙伴提到了一个问题,如何安装老版本的R3.6,Linux系统。
安装是可以的,但是安全的安装是值的推荐的,所谓安全的安装,就是不和系统已有的R语言和R包有冲突,不能把现有的系统搞崩了……
所以,写篇博客,介绍一下。因为,回答一个问题,顺便写篇博客,实在是一箭双雕,甚至,不用回答,直接写篇公众号,然后把链接提上去,不是更有极客精神吗。
对方没有说话,发送了一个链接,走了……
1,系统中需要有conda环境
如果没有,安装一个,这里不做介绍。
2,看一下conda中能不能搜索到R3.6
如果没有,可以设置一下condarc。
3,不要直接用conda安装,新建一个conda环境(非常重要)
conda create -p ~/R3.6
conda activate ~/R3.6/
激活后,显示:R3.6:
4,安装R3.6
conda install r-base=3.6.0 -c pkgs/r
点击y之前,确保是R3.6
测试一下R语言:
(/home/gwas/R3.6) [gwas@192 ~]$ R
R version 3.6.0 (2019-04-26) -- "Planting of a Tree"
Copyright (C) 2019 The R Foundation for Statistical Computing
Platform: x86_64-conda_cos6-linux-gnu (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.
Natural language support but running in an English locale
R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.
Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
搞定!!!