Error while installing GDAL

前端 未结 4 1611
庸人自扰
庸人自扰 2021-02-03 22:07

I\'m trying to install GDAL through pip. But I\'m getting this error:

extensions/gdal_wrap.cpp:3089:27: fatal error: cpl_vsi_error.h: No such     file or directo         


        
4条回答
  •  一生所求
    2021-02-03 22:33

    On my MacBook, the update/fresh install of GDAL using this approach with homebrew worked out fine. The problem on my Mac was that I apparently had an old GDAL version installed and wasn't able to update with brew upgrade gdal because of the above error message.

    Solution in short:

    brew unlink gdal
    brew tap osgeo/osgeo4mac && brew tap --repair
    brew install jasper netcdf # gdal dependencies
    brew install gdal2 --with-armadillo --with-complete --with-libkml --with-unsupported
    brew link --force gdal2
    

    Verification:

    $> gdal-config --version
    2.1.3
    $> gdal-config --libs
    -L/usr/local/Cellar/gdal2/2.1.3_3/lib -lgdal
    $> gdal-config --cflags
    -I/usr/local/Cellar/gdal2/2.1.3_3/include
    

提交回复
热议问题