Hi Agustin,
pasting your screenshot here:
Breaking down the error:
- You tried to install ruODK, I assume you followed https://docs.ropensci.org/ruODK/#install
- ruODK failed to install because leafem failed to install because raster failed to install.
- Try and install raster via CRAN, then via GitHub. Address the installation errors until it works.
Some resources:
https://github.com/ropensci/ruODK/blob/main/tic.R are the installation steps I use to build the automated test environments. As dependency packages mature, their installation bugs come and go, so this list always changes a bit.
To force install ruODK with all dependencies, run
remotes::install_github(
"ropensci/ruODK@main",
dependencies = TRUE,
upgrade = "always",
build_vignettes = FALSE
)
Try the above and feel free to report back here with any further build errors!