r-lib / devtools

Tools to make an R developer's life easier
https://devtools.r-lib.org
Other
2.39k stars 760 forks source link

devtools ubuntu 22.04 dependency error #2472

Closed cinnetcrash closed 1 year ago

cinnetcrash commented 2 years ago

I had some problems with ubuntu 22.04 and R when installing devtools. The solution was installing some library from command line.

sudo apt -y install libfontconfig1-dev libharfbuzz-dev install libtiff-dev

hadley commented 1 year ago

You can use pak:pkg_system_requirements() to get the full set of requirements if you're installing from source, e.g.

writeLines(pak::pkg_system_requirements("devtools", "ubuntu", "20.04"))
#> apt-get install -y libfreetype6-dev
#> apt-get install -y libfribidi-dev
#> apt-get install -y libharfbuzz-dev
#> apt-get install -y git
#> apt-get install -y libxml2-dev
#> apt-get install -y make
#> apt-get install -y libfontconfig1-dev
#> apt-get install -y libicu-dev
#> apt-get install -y pandoc
#> apt-get install -y zlib1g-dev
#> apt-get install -y libssl-dev
#> apt-get install -y libjpeg-dev
#> apt-get install -y libpng-dev
#> apt-get install -y libtiff-dev
#> apt-get install -y libgit2-dev
#> apt-get install -y libcurl4-openssl-dev

Created on 2022-10-08 with reprex v2.0.2

tomstamour commented 1 year ago

Thanks, this worked for me as well!