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.
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.
Gabor
October 28, 2023, 6:29am
3
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")
system
Closed
November 18, 2023, 6:29am
4
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.