Changes between Version 151 and Version 152 of FAQ


Ignore:
Timestamp:
Jul 23, 2020, 8:14:35 PM (4 years ago)
Author:
ocampos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v151 v152  
    1781781. `start_rasdaman.sh`
    179179
     180=== Error executing pip3 install --user GDAL==2.2.3, fatal error: cpl_port.h: No such file or directory ===
     181 * Look for this header in your system using the find command from root and then include it as a global option with pip3. Generally, it should be at `/usr/include/gdal`.
     182
     183 {{{
     184    $ find . -name cpl_port.h
     185    $ sudo pip3 install --user --global-option=build_ext --global-option="-I/usr/include/gdal" GDAL==2.2.3
     186 }}}
     187
    180188== PostgreSQL ==
    181189