本文主要是介绍How to switch CRAN of R language to Tsinghua mirror in ubuntu,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
How to switch CRAN of R language to Tsinghua mirror in ubuntu
创建文件
touch ~/.Rprofile
添加内容
tee ~/.Rprofile <<-'EOF'
options("repos" = c(CRAN="https://mirrors.tuna.tsinghua.edu.cn/CRAN/"))
EOF
退出后,重新登录。
参考文献
- CRAN | 镜像站使用帮助 | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror
这篇关于How to switch CRAN of R language to Tsinghua mirror in ubuntu的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!