1. 下载gdal源码并解压。
wget http://download.osgeo.org/gdal/2.0.0/gdal-2.0.0.tar.gz tar -xzvf gdal-2.0.0.tar.gz
2. 编译源码。
cd gdal-2.0.0 ./configure make
3. 安装。
make install
遇到问题
安装完成以后运行gadlinfo,直接提示gdalinfo: error while loading shared libraries: libgdal.so.20: cannot open shared object file: No such file or directory。
原因分析:gdalinfo程序找不到依赖的库,所以报错。
解决方案:将依赖的动态库和静态库添加到LD_LIBRARY_PATH环境变量中去。
编辑bash的用户配置文件:
vim ~/.bashrc
添加:export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib