Linux系统更新最新版R语言方法
第一:卸载之前的版本
sudo apt remove r-base-core
第二:在 /etc/apt/sources中添加源
sudo vi /etc/apt/sources
对于不同系统添加不同的源具体如下:
#(19.04)
deb https://cloud.r-project.org/bin/linux/ubuntu disco-cran35/
# (18.10)
deb https://cloud.r-project.org/bin/linux/ubuntu cosmic-cran35/
#(18.04;LTS)
deb https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/
#(16.04; LTS)
deb https://cloud.r-project.org/bin/linux/ubuntu xenial-cran35/
#(14.04; LTS)
deb https://cloud.r-project.org/bin/linux/ubuntu trusty-cran35/
第三:更新源:
sudo apt-get update
第四:
sudo apt-get install r-base-dev
OK!大功告成!具体参考网址:https://mirrors.tuna.tsinghua.edu.cn/CRAN/bin/linux/ubuntu/README.html
赞 (0)