R安装包源设置的常见方式及国内常用源

Posted Data+Science+Insight

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了R安装包源设置的常见方式及国内常用源相关的知识,希望对你有一定的参考价值。

R安装包源设置的常见方式及国内常用源

目录

R安装包源设置的常见方式及国内常用源

国内CRAN源

安装中指定源地址

命令行设置镜像地址

Rstudio中设置镜像地址

修改Rprofile.site配置文件


国内CRAN源

https://mirrors.tuna.tsinghua.edu.cn/CRAN/TUNA Team, Tsinghua University
https://mirrors.bfsu.edu.cn/CRAN/Beijing Foreign Studies University
https://mirrors.ustc.edu.cn/CRAN/University of Science and Technology of China
https://mirror-hk.koddos.net/CRAN/KoDDoS in Hong Kong
https://mirrors.e-ducation.cn/CRAN/Elite Education
https://mirror.lzu.edu.cn/CRAN/Lanzhou University Open Source Society
https://mirrors.nju.edu.cn/CRAN/eScience Center, Nanjing University
https://mirrors.tongji.edu.cn/CRAN/Tongji University
https://mirrors.sjtug.sjtu.edu.cn/cran/Shanghai Jiao Tong University
https://mirrors.sustech.edu.cn/CRAN/Southern University of Science and Technology (SUSTech)

安装中指定源地址

# 安装包的过程中指定下载源地址

# install.packages("RCurl", repos='http://cran.us.r-project.org')
install.packages("RCurl", repos='https://mirrors.tuna.tsinghua.edu.cn/CRAN/')


****************************************************************

package 'RCurl' successfully unpacked and MD5 sums checked

The downloaded binary packages are in
	C:\\Users\\user\\AppData\\Local\\Temp\\Rtmpuccljh\\downloaded_packages

命令行设置镜像地址

# 使用命令行设置镜像

#使用命令行设置镜像
options()$repos  
## 查看使用install.packages安装时的默认镜像
options()$BioC_mirror 
##查看使用bioconductor的默认镜像
options(BioC_mirror="https://mirrors.ustc.edu.cn/bioc/") 
##指定镜像,这个是中国科技大学镜像
options("repos" = c(CRAN="https://mirrors.tuna.tsinghua.edu.cn/CRAN/")) 
##指定install.packages安装镜像,这个是清华镜像

Rstudio中设置镜像地址

在Rstudio里面,Tool--Global Options--Packages选择China (Beijing) [https] - TUNA Team, Tsinghua University

修改Rprofile.site配置文件

R安装目录下R安装目录下\\R\\R-version\\etc\\Rprofile.site,找到Rprofile.site文件,打开该文件,找到下列语句找到Rprofile.site文件,打开该文件,找到下列语句

# 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)}

参考:R包安装设置清华镜像的三种方法
参考:Cannot install R packages in Jupyter Notebook
参考:Setup Jupyter Notebook for R
参考:How do I set a CRAN mirrror to install an R package in Jupyter?
参考:How to install R packages that are not available in “R-essentials”?
参考:R包安装镜像设置为清华安装镜像

参考:https://cran.r-project.org/mirrors.html

参考:国内开源镜像站点汇总[超级多]

以上是关于R安装包源设置的常见方式及国内常用源的主要内容,如果未能解决你的问题,请参考以下文章

Linux学习 - 02 使用 - Centos8 - 『更换rpm/epel包源为国内源』

常用的几个JQuery代码片段

ubuntu安装包查找及安装

任选Linux的发行版本(至少三个),分别介绍它们的功能及各自优缺点?

linux安装及管理程序

Mac下软件管理工具brew更换国内源及常用命令