Error: library(tidyverse)

when i type following error occurs please resolve the issue anyone?
library(tidyverse)
Error: package or namespace load failed for ‘tidyverse’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
namespace ‘vctrs’ 0.2.0 is being loaded, but >= 0.2.1 is required
In addition: Warning message:
package ‘tidyverse’ was built under R version 3.6.2

Try updating your version of vctrs by running:

install.packages("vctrs")
1 Like

i have installed install.packages("vctrs") but error is still there?

Restart R so you know you have a blank slate:


Once you've done that, load the vctrs library (library(vctrs)), and check what version you have with:

packageVersion("vctrs")

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