ModuleNotFoundError: No module named '_sqlite3' ModuleNotFoundError: No module named '_sqlite3' sqlite sqlite

ModuleNotFoundError: No module named '_sqlite3'


Not a direct answer but I ended up here with my search engine... So for my fellow web-surfers:

I had a similar issue, but on ubuntu 16.04 with a manually compile python3.6 version :

    from _sqlite3 import *ModuleNotFoundError: No module named '_sqlite3'

I had to install libsqlite3-dev (sudo apt install libsqlite3-dev) and compile from the start python3.6 to make it work.


Yep.

sudo yum install sqlite-devel

Followed by rebuild of Python 3.8.3 from source did the trick. Thx!


I had this issue on linux mint 20 after sqlite3 successfully installed

from _sqlite3 import *ModuleNotFoundError: No module named '_sqlite3'

also, could not import sqlite3 into python interpreter

Fix:

sudo apt install libsqlite3-dev

cd your python installer directory

./configuresudo make install