you have to follow these two steps to fix this issue:-
- pip install pysqlite3-binary
- open this file-[ In this path - update this with your python3.XX]:-
latest_ai_development/.venv/lib/python3.11/site-packages/chromadb/init.py
and add these three lines-
import(‘pysqlite3’)
import sys
sys.modules[‘sqlite3’] = sys.modules.pop(‘pysqlite3’)
before this commented line there-