Rlang Error on Rstudio

namespace ‘rlang’ 0.4.6 is already loaded, but >= 0.4.7 is required
Getting this error when I install ggplot 2

the error means that your current rlang version is not sufficient for ggplot2 (or a package that ggplot2 depends upon).
You can check your current version of rlang with:

library(rlang)
sessionInfo() 

What I'd suggest is to install the latest rlang version:

install.packages("rlang")
1 Like

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

If you have a query related to it or one of the replies, start a new topic and refer back with a link.