数据库
首页 > 数据库> > Python:pysqlite库不支持C扩展加载

Python:pysqlite库不支持C扩展加载

作者:互联网

我正在尝试让Spatialite与我的django应用程序一起工作,但是,我已经碰到了以下墙:

 raise ImproperlyConfigured('The pysqlite library does not support C extension loading. '
django.core.exceptions.ImproperlyConfigured: The pysqlite library does not support C extension loading. Both SQLite and pysqlite must be configured to allow the loading of extensions to use SpatiaLite.
make: *** [syncdb] Error 1

使用ubuntu 12.04,我在同一个用户和sudo中使用pip安装了pysqlite.我也尝试过编译pysqlite并启用扩展加载自己.

救命?

解决方法:

pysqlite的默认设置是在没有扩展加载支持的情况下构建.所以只是重建无济于事.您需要更改设置(在setup.cfg中).

所以我建议下载为tarball,并查看setup.cfg:

[build_ext]
#define=
#include_dirs=/usr/local/include
#library_dirs=/usr/local/lib
libraries=sqlite3
define=SQLITE_OMIT_LOAD_EXTENSION

最后一行是问题所在.最简单的方法就是将其注释掉(在行的开头添加一个#),所以它看起来像:

[build_ext]
#define=
#include_dirs=/usr/local/include
#library_dirs=/usr/local/lib
libraries=sqlite3
# define=SQLITE_OMIT_LOAD_EXTENSION

然后根据tarball中的说明重建(参见doc / install-source.txt)

标签:python,sqlite,django,postgis,spatialite
来源: https://codeday.me/bug/20190626/1289956.html