给R语言RStudio添加阿里云镜像源

方法一:

打开RStudio,输入options()$repos查看默认镜像源情况

options()$repos

给R语言RStudio添加阿里云镜像源
打开tools工具栏,找到Global Options
给R语言RStudio添加阿里云镜像源
找到Packages,点击右边的add
给R语言RStudio添加阿里云镜像源
出现添加镜像源的对话框,name处填入aliyun,url填入:https://mirrors.aliyun.com/CRAN/,点击ok保存
给R语言RStudio添加阿里云镜像源
在命令栏输入options()$repos查看镜像源情况
给R语言RStudio添加阿里云镜像源

方法二:

找到C盘,program files文件下,R/R-4.0.3/etc中的Rprofile文件
给R语言RStudio添加阿里云镜像源
给R语言RStudio添加阿里云镜像源

原来的:

# Things you might want to change
# options(papersize="a4")
# options(editor="notepad")
# options(pager="internal")
# set the default help type
# options(help_type="text")
  options(help_type="html")
# set a site library
# .Library.site <- file.path(chartr("\\", "/", R.home()), "site-library")
# set a CRAN mirror
# local({r <- getOption("repos")
#       r["CRAN"] <- "http://my.local.cran"
#       options(repos=r)})
# Give a fortune cookie, but only to interactive sessions
# (This would need the fortunes package to be installed.)
#  if (interactive()) 
#    fortunes::fortune()

修改后:

# set a CRAN mirror
local({r <- getOption("repos")
r["CRAN"] <- "https://mirrors.aliyun.com/CRAN/"
options(repos=r)})
上一篇:SSM整合---狂神说Java学习笔记


下一篇:java市场饱和了吗?现在转行学java会不会太迟?