简体   繁体   中英

ModuleNotFoundError: No module named '_sqlite3' python django

I am running simple python manage.py runserver and getting this error :

  File "/usr/local/lib/python3.6/sqlite3/dbapi2.py", line 27, in <module>
from _sqlite3 import *
ModuleNotFoundError: No module named '_sqlite3'

I had tried everything like installing sqlite3,sqlite-devel but nothing works.

Try to make a new virtual environment with virtualenv , conda or any other way you know and then activate your virtualenv, install any package you need inside that to avoid versions conflict problems. Now you can run the app.

Hope this works

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM