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")