problems installing tidyverse package in R.Studio.cloud

This happens from time to time when a new package version is out, the reason is that the package requires more than 1GB of memory to compile and that is the default RStudio Cloud memory limit (you can increase it if you have a paid account), the way RStudio Cloud addresses this issue is by caching precompiled binaries of the packages but it could take some time for the cache to update to the current package version.

Alternatively, you could try installing a previous version with this command:

remotes::install_version("readr", version = "1.3.1", repos = 'https://packagemanager.rstudio.com/cran/__linux__/xenial/latest')
1 Like