Tidyverse install error: there is no package called ‘Rcpp’

Typically if you get an error message to the effect of there is no package called **insert package name here**, a good first troubleshooting step is to try installing that package manually.

So, in this case, try installing Rcpp:

install.packages("Rcpp")
1 Like