I should install many different R packages.
I prepared the file requirements.R
(example below):
install.packages("mongolite", repos="https://cran.rstudio.com")
install.packages("xgboost", repos="https://cran.rstudio.com")
How can I install all of them, for example, from command line?
Should I somehow use devtools::load_all
?