转载:使用镜像加速 Rtools 下载与安装

使用镜像加速 Rtools 下载与安装

原文出处
https://mp.weixin.qq.com/s/4UhGpub0SOq9mLp-uENDGA
https://www.yuque.com/shenweiyan/cookbook/rtools-install-mirrors

Rtools 是什么

在 windows 使用 R,尤其是安装 R 包的时候,经常会遇到一些 Rtools 的问题。Rtools 作用很大,但我们一般不怎么会直接使用。

Rtools provides a toolchain for Windows platform that work well with R. It mainly includes GNU make, GNU gcc, and other utilities commonly used on UNIX-ish platform. R statistical language & environment is that it is open source and cross-platform.

Rtools 安装

在 RStudio 中安装 shiny 包的时候,就出现了要安装 Rtools 的 warning,提示信息中还给出了下载的链接地址。但问题是https://cran.rstudio.com/bin/windows/Rtools/是位于国外的服务器,下载速度慢的令人发指。

image

方法一

使用清华大学的 CRAN 镜像下载 Rtools,镜像地址:https://mirrors.tuna.tsinghua.edu.cn/CRAN/,如果你记不住这一串常常地址,可以从 CRAN 官网点击进去。

image

在清华大学的 CRAN 页面选择Download R for Windows,在出现的 R for Windows 页面选择 Rtools:

image
image

在 Rtools 选择下载最新版本的 Rtools,或者下载 R 版本对应 Rtools:

image
image

当我们通过下面****的链接直接访问清华大学 CRAN 的 Rtools 时:

**https://mirrors.tuna.tsinghua.edu.cn/CRAN/bin/windows/Rtools/ **

这里面有一个问题需要注意,即点击 ****"this page" ****访问 R 其他版本对应的 Rtools 时会默认跳转到 CRAN 官网默认****的****页面!!!

https://cran.r-project.org/bin/windows/Rtools/history.html

image

this page 指向异常

正常情况下应该是跳转到清华大学的 Rtools history 页面****才对!!!

https://mirrors.tuna.tsinghua.edu.cn/CRAN/bin/windows/Rtools/history.html

最后,安装 Rtools,这没什么好说的,按照默认设置一路 Next 下去,最后就安装成功,这里只强调一点是把勾选添加 rtools 到环境变量中。

image

方法二

第二种方法,我是在网络上看到,大家也可以参考一下。

options("repos"=c(CRAN="https://mirrors.tuna.tsinghua.edu.cn/CRAN/"))

install.packages('installr')

library(installr)

install.Rtools()

你可能感兴趣的:(转载:使用镜像加速 Rtools 下载与安装)