X-D-Lab / LangChain-ChatGLM-Webui

基于LangChain和ChatGLM-6B等系列LLM的针对本地知识库的自动问答
Apache License 2.0
3.14k stars 474 forks source link

ModuleNotFoundError: No module named 'fastchat.conversation'; 'fastchat' is not a package #71

Closed rongweihe closed 10 months ago

rongweihe commented 1 year ago

阿里云 linux 服务器本地部署

执行 python3 app.py 的时候直接报错

请问有人遇到类似的情况吗

(langchain-webui) [root@ LangChain-ChatGLM-Webui]# python3 app.py Traceback (most recent call last): File "/ai_study/langchain-webui-self/LangChain-ChatGLM-Webui/app.py", line 16, in from chatllm import ChatLLM File "/ai_study/langchain-webui-self/LangChain-ChatGLM-Webui/chatllm.py", line 5, in from fastchat.conversation import (compute_skip_echo_len, ModuleNotFoundError: No module named 'fastchat.conversation'; 'fastchat' is not a package

thomas-yanxin commented 1 year ago

fschat要求python版本要>=3.8,不知道您这里的Python版本是多少?另外能否贴一下fschat的版本

lsm03624 commented 1 year ago

我碰到这个问题这样解决的: pip install fastchat fschat 同时安装这个两个包。