3

I have installed python version 3.4 on CentOS 2.6

and I also installed Django 1.8.

Then I try to create Django application like below.

$django-admin.py startproject mysite

$cd mysite
$python3 manage.py startapp poll

I got some error. How can I overcome this situation. Thanks in advance.

Traceback (most recent call last):
File "/usr/local/lib/python3.4/site-packages/django/db/backends/sqlite3/base.py", line 31, in <module>
from pysqlite2 import dbapi2 as Database
ImportError: No module named 'pysqlite2'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/local/lib/python3.4/site-packages/django/db/backends/sqlite3/base.py", line 33, in <module>
from sqlite3 import dbapi2 as Database
...
ImportError: No module named '_sqlite3'

During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "manage.py", line 10, in <module>
execute_from_command_line(sys.argv)
...
raise ImproperlyConfigured("Error loading either pysqlite2 or sqlite3 modules (tried in that order): %s" % exc)
django.core.exceptions.ImproperlyConfigured: Error loading either pysqlite2 or sqlite3 modules (tried in that order): No module named '_sqlite3'
7
  • possible duplicate of ImportError: No module named 'pysqlite2' when running tests in Python 3 Ubuntu Commented Jun 24, 2015 at 8:52
  • Did you install the sqlite3 database and its python interface? Commented Jun 24, 2015 at 9:16
  • already I had read the article, it doesn't give any solution to me. Commented Jun 24, 2015 at 9:19
  • Opps, I did not installed sqlite3. I think it preinstalled on CentOS. Thanks, I will try to install sqllite3. Commented Jun 24, 2015 at 9:21
  • I have installed sqlite3. But I got same error messages. Commented Jun 24, 2015 at 10:21

2 Answers 2

3

runing sudo apt-get install python-sqlite does the trick for me

Sign up to request clarification or add additional context in comments.

Comments

0

I appended "PYTHONVERSION=3.5" just below line "VERSION=3.5" in the Makefile and recompiled. It worked.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.