After the news of the release of the package manager I tried to use it to see how faster it was compared with a normal installation.
I read this page and I used
system.time({install.packages('dplyr', repos = "https://packagemanager.rstudio.com/all/__linux__/centos8/latest/")})
and, for comparison:
system.time({install.packages('dplyr', repos=c('http://stat.ethz.ch/CRAN/'))})
The times I get are very similar: 86 seconds versus 72, with CRAN faster. What I am doing wrong? The installation of binaries is supposed to be faster.
The test was in a docker container with centos 8, R 4.0.1 used from command line (no Rstudio).
Thanks
Laura