所以问题是显然Django使用python中包含的sqlite3,我的计算机上有sqlite3,它本身可以正常工作。我已经尝试了很多方法来解决这个问题,但还没有找到解决方案。
请告诉我如何解决此问题,以便在计算机上使用Django。
:~$ python
Python 3.5.2 (default, Nov 6 2016, 14:10:16)
[GCC 6.2.0 20161005] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import sqlite3
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python3.5/sqlite3/__init__.py", line 23, in <module>
from sqlite3.dbapi2 import *
File "/usr/local/lib/python3.5/sqlite3/dbapi2.py", line 27, in <module>
from _sqlite3 import *
ImportError: No module named '_sqlite3'
>>> exit()
答案 0 :(得分:1)
我发现这个错误是由于我将我的python路径从默认值2.7更改为3.5而引起的。