Problem with tidyverse on MacOS Monterey 12.0.1

After downloading tidyverse, this happens when I want to open it:

library(tidyverse)
Fehler: Laden von Paket oder Namensraum für ‘tidyverse’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]): fehlgeschlagen
es gibt kein Paket namens ‘fs’

Please help me :slight_smile:

Hi there,

tidyverse is a package bundle. One of the packages that are loaded with library(tidyverse) appears to in turn rely on another package fs. It seems, this was not installed. Open a new session of R (Ctrl + Shift + F10) and install the respective package:

install.packages(`fs`)

restart again and try to load tidyverse. If it still fails look closely at the error message and install further missing packages.

Hope this helps!

Btw: Try the search function as well - This question was already answered:

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.