[Bug]: Your system has an unsupported version of sqlite3. Chroma requires sqlite3 >= 3.35.0

This worked for me.

streamlit: Your system has an unsupported version of sqlite3. Chroma requires sqlite3 >= 3.35.0

I simply pasted

__import__('pysqlite3')
import sys
sys.modules['sqlite3'] = sys.modules.pop('pysqlite3')
 

at the begining of __init__.py

posted @ 2025-10-25 14:03  Oops!#  阅读(3)  评论(0)    收藏  举报