problem with loading and working with tidyverse

Hi, I have a probleme with loading tiduverse, wenever I try to load it I get the following message (my Rstudio version is 3.6.2). Does any one have any solution to that?

library("tidyverse")
Error: package or namespace load failed for ‘tidyverse’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
aucun package nommé ‘broom’ n'est trouvé
In addition: Warning message:
le package ‘tidyverse’ a été compilé avec la version R 3.6.3

Try updating your packages with update.packages()
Otherwise reinstalling tidyverse with install.packages("tidyverse")

This is telling you that you are missing a package dependency that you have to install.

install.packages("broom")

Also, you are using a very old R version (BTW 3.6.2 is not your RStudio version but your R version) and that could bring you a lot of installation issues, I would recommend updating your R version to the latest version 4.2.0

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

If you have a query related to it or one of the replies, start a new topic and refer back with a link.