Skip to content

Instantly share code, notes, and snippets.

View leveaust's full-sized avatar

Stéphane Leveau leveaust

  • GEVES
  • Montpellier, France
View GitHub Profile
@hadley
hadley / devtools.r
Last active April 16, 2019 21:13
Install the development version of devtools on windows.
if ("devtools" %in% loadedNamespaces()) {
stop("You must restart R before installing devtools")
}
url <- "https://gist.github.com/raw/4506250/devtools.zip"
temp <- file.path(tempdir(), "devtools.zip")
setInternet2(TRUE)
suppressWarnings(download.file(url, temp, mode = "wb"))
install.packages(temp, repos = NULL)