这是gdal可能会用到的额外的包,按本身须要先提早编译。
这里的话我主要用了proj,Libtiff,Geotiff,Geos,Hdf5这5个包,基本能知足须要python
新建一个安装目录:c++
cd /home/Elam mkdir gdalsrc cd gdalsrc
yum install gcc-c++ wget http://download.osgeo.org/proj/proj-4.8.0.tar.gz tar -zxvf proj-4.8.0.tar.gz cd proj-4.8.0 mkdir build ./configure --prefix=/home/Elam/gdalsrc/proj-4.8.0/build # compile make -j # install into build dir make install
建立一个统一的添加环境变量的文件夹:sql
cd /home/Elam/gdalsrc mkdir envsh cd envsh vim export_path.sh
添加下面两行代码vim
export LD_LIBRARY_PATH="/home/Elam/gdalsrc/proj-4.8.0/build/lib:$LD_LIBRARY_PATH" export PATH="/hoem/Elam/gdalsrc/proj-4.8.0/build/bin:$PATH"
能够source export_path.sh 而后键入proj看看是否编译成功curl
yum install gcc-c++ zlib-devel libjpeg-turbo-devel cd /home/Elam/gdalsrc wget http://download.osgeo.org/libtiff/tiff-4.0.9.tar.gz 最新版本是4.0.9 tar -zxvf tiff-4.0.9.tar.gz cd tiff-4.0.9
ls一下发现build文件夹已经存在,所以不须要从新建立直接configurepost
./configure --prefix=/home/Elam/gdalsrc/tiff-4.0.9/build/ \ --exec-prefix=/home/Elam/gdalsrc/tiff-4.0.9/build make -j make check # install to build dir make install # confirm install ./build/bin/tiffinfo
进入刚才建立的export_path添加新的环境变量,以下图:ui
source一下url
在gdalsrc目录下spa
wget http://download.osgeo.org/geotiff/libgeotiff/libgeotiff-1.4.2.tar.gz tar -xvfz libgeotiff-1.4.2.tar.gz cd libgeotiff-1.4.2/ mkdir build ./configure --prefix=/home/Elam/gdalsrc/libgeotiff-1.4.2/build \ --with-proj=/home/Elam/gdalsrc/proj-4.8.0/build \ --with-libtiff=/home/Elam/gdalsrc/tiff-4.0.9/build \ --with-zlib --with-jpeg # compile make -j # install into build dir make install
进入export_path添加新的环境变量,以下图:unix
source一下
yum install gcc-c++ swig python-devel cd /home/Elam/gdalsrc wget http://download.osgeo.org/geos/geos-3.6.2.tar.bz2 tar -xvjf geos-3.6.2.tar.bz2 cd geos-3.6.2 mkdir build ./configure --prefix=/home/Elam/gdalsrc/geos-3.6.2/build --enable-python # compile make -j$threads make check # install into build dir make install # check install ./build/bin/geos-config --version
gdal编译过程当中碰到的问题主要出如今编译这个库中
configure出现cannot find Python library path错误:
解决方法:
vim configure
在左下角输入/cannot find Python library path
回车
找到对应行附近
将libpython$PYTHOH_VERSION改为你本身对应的.so和.a版本(具体版本能够到上面include路径同一路径下lib文件夹中查看)
如上 我改为了libpython3.6m
修改后:wq
从新configure
继续修改configure文件
从新configure
若是后续还报/usr/bin/ld: cannot find -lpython3.6错误
继续修改
从新configure
而后继续
make –j make check make install
添加新的环境变量
source
yum install gcc-c++ zlib-devel cd /home/Elam/gdalsrc wget http://www.hdfgroup.org/ftp/HDF5/current/src/hdf5-1.8.11.tar.gz tar xvfz hdf5-1.8.11.tar.gz cd hdf5-1.8.11 touch release_docs/INSTALL_VMS.txt mkdir build CFLAGS=-O0 \ ./configure \ --prefix=/home/Elam/gdalsrc/hdf5-1.10.1/build \ --enable-shared \ --enable-build-all \ --with-zlib \ --with-pthread \ --enable-cxx \ # compile make -j # test build -- all tests should pass make -j check # install into build dir make install
添加新的环境变量,注意这里还有include文件夹
我从网上下了一个2.3.0版本的,网址:http://download.osgeo.org/gdal/
yum install subversion gcc-c++ sqlite-devel libxml2-devel python-devel numpy swig expat-devel libcurl-devel xerces-c-devel unixODBC-devel postgresql postgresql-devel cd /home/Elam/gdalsrc tar -zxvf gdal-2.3.0.tar.gz cd gdal-2.3.0 mkdir build ./configure \ --prefix=/home/Elam/gdalsrc/gdal-2.3.0/build \ --with-jpeg=external \ --without-libtool \ --with-python=/usr/local/anaconda3/bin/python \ --with-static-proj4=/home/Elam/gdalsrc/proj-4.8.0/build \ --with-libtiff=/home/Elam/gdalsrc/tiff-4.0.9/build \ --with-geotiff=/home/Elam/gdalsrc/libgeotiff-1.4.2/build \ --with-geos=/home/Elam/gdalsrc/geos-3.6.2/build/bin/geos-config \ --with-hdf5=/home/Elam/gdalsrc/hdf5-1.10.1/build \ make -j # install into build dir make install
添加新的环境变量:
进入build/bin里面
gdal-config –-version
看看是否编译成功
cd /home/Elam/gdalsrc/gdal-2.3.0/swig make -j cd python python setup.py install --prefix=/home/Elam/gdalsrc/gdal-2.3.0/build
添加环境变量,或者直接用sys的路子添加路径
source
从新新建一个终端
先用
echo $PATH echo $LD_LIBRARY_PATH
查看各个库的路径是否都在
若是不在,则从新source一下那个export_path.sh 若是不想每次都从新source,就直接添加到系统的环境变量当中去
进入python终端
看看能不能import
binggo!