TidyVerse Installation - dependencies 'dbplyr','hms', and 'rlang' are not available

ERROR: dependencies 'dbplyr', 'hms', 'rlang' are not available for package 'tidyverse'

  • removing 'C:/Program Files/R/R-3.2.4/library/tidyverse'

I am running R x64 3.4.3 on Windows 10. Any ideas what I should do?

You are getting this error because you do not have the required dependencies installed already. You can try rerunning the install.packages command with dependencies = TRUE:

install.packages("tidyverse", dependencies = TRUE)

If this does not work you can also just install each of those three packages individually first and then rerun the tidyverse installation

1 Like

2 posts were split to a new topic: Tidyverse package installation when installing packages separately and/or installing tidyverse does not work?