rgdal 安装在 Ubuntu 18.04 LTS 中,但 R 3.5 无法识别它

rgdal installed in Ubuntu 18.04 LTS, but R 3.5 not recognized it

我正在尝试在 R 3.5 (Ubuntu 18.04) 中安装 'rdgal' 包,但是,R 显示此错误:

configure: R_HOME: /opt/R/3.5.3/lib/R
configure: CC: gcc
configure: CXX: g++
configure: C++11 support available
configure: rgdal: 1.4-7
checking for /usr/bin/svnversion... yes
configure: svn revision: 845
checking for gdal-config... no
no
configure: error: gdal-config not found or not executable.
ERROR: configuration failed for package ‘rgdal’
* removing ‘/home/sergiob/R/x86_64-pc-linux-gnu-library/3.5/rgdal’

The downloaded source packages are in
        ‘/tmp/Rtmp0rrlnK/downloaded_packages’
Warning message:
In install.packages("rgdal") :
  installation of package ‘rgdal’ had non-zero exit status

不过系统好像安装了GDAL,使用gdalinfo --version

GDAL 2.2.3, released 2017/11/20

并使用 dpkg -l | grep gdal | cut -c-72(似乎 Ubuntu 有两个版本:2.2 和 2.4)

ii  gdal-bin                                        2.2.3+dfsg-2        
ii  gdal-data                                       2.4.2+dfsg-1~bionic0
ii  libgdal20                                       2.2.3+dfsg-2        
ii  python-gdal                                     2.2.3+dfsg-2        
ii  python3-gdal                                    2.2.3+dfsg-2

此外,我已经安装了 QGIS 3.13(带有 GDAL/ORG 2.2.3)但我无法确定这是否是真正的问题。

我尝试重新安装所有依赖项和软件包,包括 sudo apt-get install libgdal-dev libproj-dev,但没有解决任何问题。

我试着查看了所有关于这个问题的帖子,但是,我仍然可以解决这个问题。

R 有办法识别 Ubuntu 18.04 中安装的 GDAL 吗?

解决办法是卸载QGIS,先安装GDAL,然后重新安装QGIS。

终于可以在R中安装rGDAL了