无法在 Ubuntu 16.04 LTS 上安装“sf”R 包

Unable to install ‘sf’ R package on Ubuntu 16.04 LTS

我无法在 Ubuntu 16.04 LTS 上安装 sf R 软件包。我试过了

install.packages("sf")

以及

devtools::install_github("r-spatial/sf")

在运行

之后
sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable
sudo apt-get update
sudo apt-get install libudunits2-dev libgdal-dev libgeos-dev libproj-dev 

收到以下错误消息:

configure: error: gdal-config not found or not executable.

ERROR: configuration failed for package ‘sf’

想知道安装方法是什么sf

这对我有用。使用

sudo aptitude install libgdal-dev

然后

devtools::install_github("r-spatial/sf")