To install inbodb
from the INBO universe, start a new R session and run this code (before loading any packages):
# Enable the INBO universe (not needed for INBO employees, as this is the default setting)
options(
repos = c(
inbo = "https://inbo.r-universe.dev", CRAN = "https://cloud.r-project.org"
)
)
# Install the packages
install.packages("inbodb")
To install inbodb
from GitHub, start a new R session and run this code (before loading any packages):
#install.packages("remotes")
remotes::install_github("inbo/inbodb")