Tidyverse Not Loaded, It Says "Namespace 'Vctrs' 0.2.0 Is Already Loaded, But >= 0.2.1 Is Required"

tidyverse not loaded, it says namespace ‘vctrs’ 0.2.0 is already loaded, but = 0.2.1 is required

It´s important to check for packages updates. It´s in tool menu->check for package updates->choose the packages. I had the same problem with other package "drc" and it gave me the same error with old version of "vctr".

namespace 'rlang' 0.4.5 is being loaded, but = 0.4.10 is required

First of all: your version is not newer, it's older. 0.4.5 < 0.4.10.

The issue is that for whatever reason the binary version you have access to is of version 0.4.5, but the source version (which needs compiling) is of version 0.4.10.

I believe the simplest solution would be downloading the source package and installing it as source.

install.packages("https://cran.r-project.org/src/contrib/Archive/rlang/rlang_0.4.10.tar.gz", repos = NULL, type="source")

Now, if you don't want the trouble, I belive another possible solution would be updating your R version, which will in turn update the binary versions available for most packages.



Related Topics



Leave a reply



Submit