更新了Rstudio后,出現(xiàn)
unable to access index for repository https://mirrors.tuna.tsinghua.edu.cn/CRAN/src/contrib: cannot open URL 'https://mirrors.tuna.tsinghua.edu.cn/CRAN/src/contrib/PACKAGES'
出現(xiàn)這個(gè)問題是鏡像沒有設(shè)置好
一叠赐、首先,用命令行設(shè)置鏡像
options()$repos ## 查看使用install.packages安裝時(shí)的默認(rèn)鏡像
options()$BioC_mirror ##查看使用bioconductor的默認(rèn)鏡像
options(BioC_mirror="https://mirrors.ustc.edu.cn/bioc/") ##指定鏡像屡江,這個(gè)是中國(guó)科技大學(xué)鏡像
options("repos" = c(CRAN="https://mirrors.tuna.tsinghua.edu.cn/CRAN/")) ##指定install.packages安裝鏡像芭概,這個(gè)是清華鏡像
二、其次惩嘉,在Rstudio里面罢洲,Tool--Global Options--Packages選擇China (Beijing) [https] - TUNA Team, Tsinghua University
三、直接在R安裝目錄下C:\Program Files\R\R-3.6.0\etc\Rprofile.site文黎,找到Rprofile.site文件惹苗,打開該文件殿较,找到下列語(yǔ)句
# set a CRAN mirror
# local({r <- getOption("repos")
# r["CRAN"] <- "http://my.local.cran"
# options(repos=r)})
修改如下:
# set a CRAN mirror
local({r <- getOption(“repos”)
r[“CRAN”] <- “http://mirrors.tuna.tsinghua.edu.cn/CRAN/”
options(repos=r)}