Problem loading Tidyverse

I am running the Rstudio. Since installing the latest version of R-Studio, I can no longer get tidyverse package to load. Any suggestions on how I can fix this?

I get the following error message:
Error: package or namespace load failed for ‘tidyverse’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
there is no package called ‘hms’
In addition: Warning message:
package ‘tidyverse’ was built under R version 3.4.4

Is very unlikely that updating RStudio will affect your package library, I'm guessing you actually meant that you have updated R (not the same as RStudio), if that is the case, then first try updating your packages with

update.packages(checkBuilt=TRUE)

and then install the missing dependency with

install.packages("hms")

Yes i mean R not RStudio.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.