I'm trying to import and use chromadb to play as a vector store for my RAG application. But it is giving ImportError as it is trying to import pypika packages in the backend which I cannot control manually.
My code:
!pip install chromadb
import chromadb
chroma_client = chromadb.Client()
Below is the error thrown:
ImportError: cannot import name 'ClickHouseQuery' from 'pypika.dialects'
(C:\Users\Lenovo\AppData\Roaming\Python\Python311\site-packages\pypika\dialects\__init__.py)
I'm working on vscode with virtual env in E: drive. How can we handle this? is there any prerequisite to be done before importing chromadb to get rid of this pypika ImportError?