How to solve an install error in R tidyverse (and other R packages)

preview_player
Показать описание
A solution for a relatively rare error when installing R packages. A case study in tidyverse, but the problem might occur also elsewhere.
Рекомендации по теме
Комментарии
Автор

I Had the same problem this solution works!
after manually installing Broom and Stringi it worked the third time.
It's wierd why i didn't need to do all this on my other PC

CasperLind
Автор

thanks that solve my problem

install.packages("broom", dependencies = TRUE)
install.packages("tidyverse", dependencies = TRUE)

my erros message was "Error: package or namespace load failed for ‘tidyverse’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
namespace ‘vctrs’ 0.4.1 is already loaded, but >= 0.5.0 is required"

raulcardenasful
Автор

Wow! it worked for me I have tried all manner of suggestions before now. Thanks

clerkoghenekobaro
Автор

I have been having a lot of problems whit elemstatlearn, keeps telling me it's not available, and whit R CMD INSTALL tells me R command it's not recognized :c

koi
Автор

Please demonstrate how we extract only autosomes PLINK

KIDSTIME
Автор

Thank you so much! It worked for me and rly helped a lot!

ruochenzhang
Автор

Thank you very much! This solution worked for me

Blabla-vxqx
Автор

nope this doesn't solve my problem

feloniousmonk