dwillowtree / diana

Save toil in security operations with: Detection & Intelligence Analysis for New Alerts (D.I.A.N.A. )
https://dianast.streamlit.app/
MIT License
159 stars 18 forks source link

RuntimeError: Your system has an unsupported version of sqlite3. Chroma #24

Open priamai opened 3 weeks ago

priamai commented 3 weeks ago

Hi there, this is a known problem, I encountered many times in Langchain. It is used by the crewai package and it requires a specific fix on Linux vs Windows.

priamai commented 3 weeks ago

This is my fix:

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