List Rtools versions

rtools_versions(arch = NULL)

Arguments

arch

Architecture. Possible values are:

  • x86_64: x86_64 Windows,

  • aarch64 or arm64: aarch64 Windows. Defaults tp the current architecture on Windows, and to x86_64 on other systems.

Value

A data frame with columns

  • version: The Rtools version, e.g. 45.

  • url: Download URL of the Rtools installer.

  • first: First R version supported by this Rtools version.

  • last: Last R version supported by this Rtools version.

Examples

rtools_versions()
#> # A data frame: 21 × 4
#>    version url                                                       first last 
#>    <chr>   <chr>                                                     <chr> <chr>
#>  1 26      https://cran.rstudio.com/bin/windows/Rtools/Rtools26.exe  2.0.0 2.6.2
#>  2 27      https://cran.rstudio.com/bin/windows/Rtools/Rtools27.exe  2.6.0 2.7.2
#>  3 28      https://cran.rstudio.com/bin/windows/Rtools/Rtools28.exe  2.7.0 2.8.1
#>  4 29      https://cran.rstudio.com/bin/windows/Rtools/Rtools29.exe  2.8.0 2.9.2
#>  5 210     https://cran.rstudio.com/bin/windows/Rtools/Rtools210.exe 2.9.0 2.10…
#>  6 211     https://cran.rstudio.com/bin/windows/Rtools/Rtools211.exe 2.10… 2.11…
#>  7 212     https://cran.rstudio.com/bin/windows/Rtools/Rtools212.exe 2.12… 2.12…
#>  8 213     https://cran.rstudio.com/bin/windows/Rtools/Rtools213.exe 2.13… 2.13…
#>  9 214     https://cran.rstudio.com/bin/windows/Rtools/Rtools214.exe 2.13… 2.14…
#> 10 215     https://cran.rstudio.com/bin/windows/Rtools/Rtools215.exe 2.14… 2.15…
#> # ℹ 11 more rows
rtools_versions("aarch64")
#> # A data frame: 2 × 4
#>   version url                                                        first last 
#>   <chr>   <chr>                                                      <chr> <chr>
#> 1 44      https://github.com/r-hub/rtools44/releases/download/lates… 4.4.0 4.4.…
#> 2 45      https://github.com/r-hub/rtools45/releases/download/lates… 4.5.0 100.…