Tidyverse Package issues loading

Hello, if any one could help with this it would be greatly appreciated. I ran a conflict_prefer() function as instructed by my school. And my tidyverse has never loaded correctly since. I factory reset my laptop and created new RStuido Posit accounts and I am still having the same issue. How can I fix this and restore my RStudio back so I can run the tidyverse package properly? Thank you.

More information is needed here for anyone to be able to offer advice. When you say "my tidyverse has never loaded correctly since", what does that mean? Do you get error messages? If so, which one(s)?

  1. {tidyverse} is a meta-package that is intended to be used for downloading many different packages at once. I don't think it re-exports the functions from those packages.
  2. Because of #1, you should not be calling library(tidyverse) if you don't need to. (I know that, in practice, many people find it convenient to do this.) You should just call the individual libraries you need e.g. library(dplyr).
  3. Please specify the conflict_prefer() code you ran and what issue you're having exactly.