소스 검색

fix: notion install error message (#439)

cachho 2 년 전
부모
커밋
c26559a2d3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      embedchain/loaders/notion.py

+ 1 - 1
embedchain/loaders/notion.py

@@ -4,7 +4,7 @@ import os
 try:
     from llama_index import download_loader
 except ImportError:
-    raise ImportError("Notion requires extra dependencies. Install with `pip install embedchain[notion]`") from None
+    raise ImportError("Notion requires extra dependencies. Install with `pip install embedchain[community]`") from None
 
 
 from embedchain.loaders.base_loader import BaseLoader