Hi @Zclaxton! Welcome!
Yes, as @wburr noted, the problem here is that readr
is failing to install. This is because it requires compilation, and the compiler is exceeding RStudio Cloud's current memory limit (1 GB). The same thing currently happens if you try to install tidyverse
, too.
Almost all of the tidyverse
packages have pre-built binaries cached to avoid this problem, and readr
formerly did. It looks like a new version was released to CRAN (on 2018-11-22) that has not been pre-built and cached by the RStudio Cloud team. Unfortunately, I think anything that depends on the latest version of readr
is going to fail to install until a new binary can be cached.
Edited to add:
I tried installing the previous version of readr
using remotes::install_version()
, but this failed. I'm not quite sure why (I have other RStudio Cloud projects with readr
1.1.1 installed which I think installed from a cached binary), but it seems that Cloud's package proxy system doesn't work this way:
remotes::install_version("readr", version = "1.1.1")
Trying http://package-proxy
Error in download_version_url(package, version, repos, type) :
version '1.1.1' is invalid for package 'readr'