Changes between Version 151 and Version 152 of FAQ
- Timestamp:
- Jul 23, 2020, 8:14:35 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FAQ
v151 v152 178 178 1. `start_rasdaman.sh` 179 179 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 180 188 == PostgreSQL == 181 189