ModuleNotFoundError: No module named 'chromadb' 오류는 chromadb 패키지가 설치되어 있지 않아서 발생합니다. 이를 해결하기 위해서는 해당 패키지를 설치해야 합니다.
1. chromadb 패키지 설치
pip를 사용하여 chromadb를 설치합니다:
bash
코드 복사
pip install chromadb
2. 설치 후 다시 실행
패키지를 설치한 후, 코드를 다시 실행하면 오류가 해결됩니다.
'Python' 카테고리의 다른 글
angChainDeprecationWarning: The method BaseRetriever.get_relevant_documents was deprecated in langchain-core 0.1.46 and will be removed in 0.3.0. Use invoke instead (0) | 2024.07.03 |
---|---|
ModuleNotFoundError: No module named 'sentence_transformers' (0) | 2024.07.03 |
Python 버전변경 [windows] (0) | 2024.07.03 |
poetry로 파이썬 프로젝트 만들기 (0) | 2024.07.03 |
poetry install (0) | 2024.07.03 |