Hi,
Can anyone help? I have updated to R 4.0.2 but now cannot install tidyverse as readr has non exit status.
Tidyverse is literally the only package I need for teaching this week. Any help would be appreciated.
Thanks
Hi,
Can anyone help? I have updated to R 4.0.2 but now cannot install tidyverse as readr has non exit status.
Tidyverse is literally the only package I need for teaching this week. Any help would be appreciated.
Thanks
The installation failed for you because readr 1.4.0 was just accepted on CRAN and the package binary has not yet been built.
install.packages("readr", type = "binary")
Should install the last binary build of readr (1.3.1).
Brilliant, thank you so much for this