Problem with loading tidyverse and qgraph

Hi,

I downloaded tidyverse and qgraph. When I want to run them, this error appears for both of them.
Although I have restarted the R and also installed package dplyr, I have still had the problems.
I would appreciate help me how to resolve this.

I receive this message for the packages.
Error: package or namespace load failed for ‘ggplot2’ in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]):
there is no package called ‘vctrs’

You have found yourself in dependency hell... You need to manually install the missing required packages. Run,

install.packages("vctrs")

then try again.
If you get another error saying,

there is no package called 'whatever_the_missing_package_is'

repeat the last step with,

install.packages("whatever_the_missing_package_is")

If you are prompted about a newer version of some package being available and asking if you want to install the newer version from source, you will almost certainly have far fewer issues if you say no.

Repeat this processas many times as necessary until everything works.

1 Like

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.