Hello
I have entered the following command:
sudo su - -c "R -e \"install.packages('tidyverse', repos='http://cran.rstudio.com/')\""
and get the message:
Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
namespace ‘tibble’ 2.1.3 is being loaded, but >= 2.99.99.9014 is required
If I then try to install tibble I get the older version:
> install.packages('tibble', repos='http://cran.rstudio.com/')
Installing package into ‘/usr/local/lib/R/site-library’
(as ‘lib’ is unspecified)
trying URL 'http://cran.rstudio.com/src/contrib/tibble_2.1.3.tar.gz'
Content type 'application/x-gzip' length 310774 bytes (303 KB)
I think I had tibble version 2.99.99.9014 installed at one point but I'm pretty certain I mistakenly deleted the folder, as opposed to uninstalling it properly, and I do not know how to rectify the problem I have caused. Many thanks for any help.