Trouble loading dplyr

When I have recently tried loading dplyr, tidyr, and tidyverse, I have been getting this error message:

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

Any ideas?

I have the latest version of R and I tried uninstalling all three of these packages and just loading dplyr, but it is not working for me

This is telling you that you do not have the pillar package installed. You can install it with this command:

install.packages("pillar")
2 Likes