Hi there,
I tryed to run tidyverse library but R show up this error
Error: package or namespace load failed for ‘tidyverse’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
namespace ‘vctrs’ 0.5.1 is already loaded, but >= 0.5.2 is required
I installed "vctrs" updates but even thougt it is not running
What do you think about a possible solution thank you.
because if a package has a version dependency that is not on CRAN, it should fail checks and not be passed. I've found that update.packages("vctrs") doesn't work for mysterious reasons.
@EconProf 's suggestion to start a new RSession isn't strictly necessary, but it's a good habit to get into to clear out the namespace of all the accumulated leftovers from a session that we forget about, but then realize next time that we had this other library loaded that wasn't in the script and so a function can't be found.
Thank you for your time to answer my question. After many R restarts and applying install.packages('vctrs') I could solved this Error. Thanks to you, I will develop my text analysis project.