debug.R

## author: Jordy van Langen
## on Windows: make sure Rtools (https://cran.r-project.org/bin/windows/Rtools/) is installed.


## step 1: check if this works
if (!require(devtools)) {
  install.packages('devtools')
}
devtools::install_github("jorvlan/openvis")

## step 2: if not, try remotes
if (!require(remotes)) {
  install.packages('remotes')
}
remotes::install_github('jorvlan/openvis')

## step 3: if not, check whether you have a CRAN mirror installed.
file.edit(".Rprofile") 
options(repos = c(CRAN = "https://cloud.r-project.org")) # in .Rprofile
        
## step 4: check if everything with works with devtools
devtools::dev_sitrep()
jorvlan/openvis documentation built on Dec. 6, 2020, 3:06 a.m.