sqlite3模块包含在
Python 2.5版中.但是,我坚持使用2.4版本.我上传了sqlite3模块文件,将目录添加到sys.path,但是当我尝试导入它时出现以下错误:
原文链接:https://www.f2er.com/sqlite/197643.htmlTraceback (most recent call last): File "<stdin>",line 1,in ? File "sqlite3/__init__.py",line 23,in ? from dbapi2 import * File "sqlite3/dbapi2.py",line 26,in ? from _sqlite3 import * ImportError: No module named _sqlite3
文件’_sqlite3’在lib-dynload中,但如果我在sqlite3目录中包含它,我会收到其他错误.
有什么建议?我在有限的环境中工作;除了其他方面,我无法访问GCC.