I am getting the following errors when trying to run a cloned repo of localGPT on my mac. I have successfully installed everything in the requirements.txt file.
This is happening with multiple python repos and other imports. Is this a path issue? How might I fix those.
Traceback (most recent call last):
File "/Documents/GitHub/localGPT/ingest.py", line 12, in <module>
from constants import (CHROMA_SETTINGS, DOCUMENT_MAP, EMBEDDING_MODEL_NAME, INGEST_THREADS, PERSIST_DIRECTORY,
File "/Documents/GitHub/localGPT/constants.py", line 7, in <module>
from langchain.document_loaders import (
ImportError: cannot import name 'UnstructuredExcelLoader' from 'langchain.document_loaders' (/anaconda3/lib/python3.10/site-packages/langchain/document_loaders/__init__.py)
I have run this in Coda, through the terminal app, and in VS Code.