ogrinfo:符号查找错误:/usr/local/lib/libgdal.so.1:未定义的符号:sqlite3_column_table_name

时间:2016-02-01 05:05:29

标签: django postgis

ogrinfo: symbol lookup error: /usr/local/lib/libgdal.so.1: undefined symbol: sqlite3_column_table_name

我在解析形状文件ESRI时遇到上述错误。我需要用PostGIS开发django项目,我被困在这里。我如何获得它?

1 个答案:

答案 0 :(得分:0)

尝试通过以下方式从源代码构建SQLite

CFLAGS="-DSQLITE_ENABLE_COLUMN_METADATA=1" ./configure
make
sudo make install

参考-https://www.sqlite.org/compile.html#enable_column_metadata

相关问题