Hi,
Often, R packages have some dependencies and all the dependency package must be installed for it to load.
tidyverse is a special package that help installed and load in a single line a lot of packages of the tidyverse.
You can't just install tidyverse
and not all the others. The error you see is because you are missing some dependencies
The easiest way is to be connected to CRAN mirror and run install.packages("tidyverse"). This will download and install all the required packages.
Manually, this would mean identify the whole dependency tree and downloading all the required packaged and installing them.
Why are you installing
from a zip file ? Can you connect to CRAN ?