当我输入
import sqlite3
在 Python 2.5 解释器 (C:\Python25\Python) 中,我收到以下错误:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\QGIS\python\sqlite3\__init__.py", line 24, in <module>
from dbapi2 import *
File "C:\QGIS\python\sqlite3\dbapi2.py", line 27, in <module>
from _sqlite3 import *
ImportError: DLL load failed: Specified module not found.
出现一个带有“sqlite3.dll not found”消息的消息框(原始德语消息:“Das Programm kann nicht gestartet werden, da sqlite3.dll auf dem Computer fehlt. Installieren Sie das Programm erneut, um das Problem zu beheben.”) .
根据文档,sqlite3 包含在 Python 2.5 中(我不需要单独安装)。
另外,当我查看目录 C:\Python25\DLLs 时,我发现 sqlite3.dll 在那里。
我能做些什么来解决这个问题?
请注意,我的机器上有 3 个不同版本的 Python。