我正在尝试使用fuzzymatcher,但是当我运行代码时,我得到了以下错误:
OperationalError: no such module: fts4
此外,我还尝试通过使用以下代码在C:\ProgramData\Anaconda3\DLLs
中放置最新的sqlite.dll文件来加载扩展
import sqlite3
conn = sqlite3.connect(':memory:')
cur = conn.cursor()
conn.enable_load_extension(True)
for (val,) in cur.execute('pragma compile_options'):
print (val)
但是没有显示扩展并返回以下代码,
COMPILER=msvc-1916
THREADSAFE=1
发布于 2020-11-02 15:14:40
这些是我遵循的步骤&扩展被启用,
1. Update the Sqlite by following on anaconda:
conda install -c anaconda sqlite
2.Download and Extract the following folder
https://github.com/rogerbinns/apsw/releases/download/3.33.0-r1/apsw-3.33.0-r1.zip
3. Run Anaconda & following command in that folder:
python setup.py install test
https://stackoverflow.com/questions/64586694
复制相似问题