Error in installing tidyverse on server version of Rstudio

Hello Community,
I am trying to install a tidyverse on server version of rstudio. Please see the below error message. Anyone experienced same error? I need help on how to resolve it. In case this issue has been address, I'd appreciate any guidance to find the proposed solution.

error_rstudio

SystemRequirements:	freetype2, harfbuzz, fribidi

from CRAN - Package textshaping

This implies you need to install those system utilies on your platform. The best way to do that may vary given your linux distribution.

If pak supports your distribution, then you can look up (or even automatically install) the system packages you need:

Install pak (c.f. All about installing pak. — Installing pak • pak)

install.packages("pak", repos = sprintf(
  "https://r-lib.github.io/p/pak/stable/%s/%s/%s",
  .Platform$pkgType,
  R.Version()$os,
  R.Version()$arch
))

and then:

pak::pkg_sysreqs("tidyverse")

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.