Error when opening Tidyverse

library(tidyverse)
Error: package or namespace load failed for ‘tidyverse’:
.onLoad failed in loadNamespace() for 'readr', details:
call: library.dynam(lib, package, package.lib)
error: DLL ‘tzdb’ not found: maybe not installed for this architecture?

Hi!

Looks like you don't have the tzdb package installed correctly that other packages in the tidyverse rely on.

Open a new R Session using Ctrl+Shift+F10 and try to install the package adding depenedencies = TRUE.

install.packages("tzdb", dependencies = TRUE)

Restart R and try to load now. If you still get problems for other packages do this again for the respective packages.

Also check out this thread where I found this:

Hope this helps,
Valentin

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.