尝试运行以下代码:
conn.executescript("""
CREATE VIRTUAL TABLE Hashes USING rtree(
给出以下错误:sqlite3操作错误没有这样的模块:rtree
要解决这个问题,我已经在启用了rtree的sqlite源代码中构建了windows dll。
为了让sqlite3 python模块识别它,我应该把dll放在哪里?
在sqlite3 python模块上启用rtree模块还有其他修复方法吗?
python版本2.7