I\'m getting the following error when I\'m loading tidyverse. It was all working fine a few minutes ago when I was running my shinyapp. How should I resolve this?
I had the same problem but managed to tackle it. You may remove the current version of rlang using the following command:
remove.packages("rlang")
and then install the rlang again:
install.packages("rlang")
After that run the library:
library(tidyverse)
I know this is an old question but I faced this same problem. I restarted R session and it worked fine after that. Hope this helps someone! :)
Also had similar problem but resolved it after a struggle. I used:-
devtools::install_github("tidyverse/tidyverse")
I know this might be late answer,but I had the same issue and I fixed it by updating the packages, specifically : ggplot2, scales. according to this Rstudio site