Error: package or namespace load failed for ‘tidyverse’ in loadNamespace

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)

Leave a Comment