Installing

Installing adventr

To use adventr you first need to install and RStudio. To learn how to do this and to get oriented with and RStudio complete my interactive tutorial, getting started with and RStudio.

Once you have installed and RStudio you can install the latest official release of adventr from CRAN in the usual way. Note that you should include dependencies = TRUE to also install the packages used in the tutorials on your system. If you omit this argument, you will need to manually install these packages (which you won’t want to do, trust me).

install.packages("adventr", dependencies = TRUE)

If you want the very latest development version, you can install it from GitHub by executing (in ):

if(!require(devtools)){
  install.packages("devtools")
}

devtools::install_github("profandyfield/adventr", dependencies = TRUE)
Previous
Next