【发布时间】:2012-02-20 15:07:43
【问题描述】:
可能还有其他类似的问题,但在我的特殊情况下,我没有超级用户 (sudo) 访问机器的权限,并且我在本地安装了 Python 2.7。
>>> import sqlite3
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/spicmacay/.local/lib/python2.7/sqlite3/__init__.py", line 24, in <module>
from dbapi2 import *
File "/home/spicmacay/.local/lib/python2.7/sqlite3/dbapi2.py", line 27, in <module>
from _sqlite3 import *
ImportError: No module named _sqlite3
>>>
更新:当我运行 ./configure&& make 时,我得到:
make
running build
running build_ext
building dbm using gdbm
INFO: Can't locate Tcl/Tk libs and/or headers
Python build finished, but the necessary bits to build these modules were not found:
_sqlite3 _tkinter bsddb185
dl imageop sunaudiodev
To find the necessary bits, look in setup.py in detect_modules() for the module's name.
running build_scripts
【问题讨论】:
-
如果你编译过python你可能忘记了sqlite库?