设置R下载镜像

进入R编辑环境,输入如下代码,设置清华镜像。

R version 4.0.3 (2020-10-10) -- "Bunny-Wunnies Freak Out"
Copyright (C) 2020 The R Foundation for Statistical Computing
Platform: x86_64-conda-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.

>local(
	{
    
    
		r <- getOption("repos")
		r["CRAN"] <- "http://mirrors.tuna.tsinghua.edu.cn/CRAN/"
		options(repos=r)
	}
)

#local({r <- getOption("repos");r["CRAN"] <- "http://mirrors.tuna.tsinghua.edu.cn/CRAN/";options(repos=r)})

猜你喜欢

转载自blog.csdn.net/nixiang_888/article/details/113057962