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’
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: