Open priamai opened 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.
This is my fix:
__import__('pysqlite3') import sys sys.modules['sqlite3'] = sys.modules.pop('pysqlite3')
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.