FastChat
FastChat copied to clipboard
ModuleNotFoundError: No module named 'prompt_toolkit'
it show this error: ModuleNotFoundError: No module named 'prompt_toolkit' but when i run pip install prompt_toolkit or pip install -U prompt-toolkit it say: Requirement already satisfied: prompt_toolkit in c:\users\asser\miniconda3\lib\site-packages (3.0.38) Requirement already satisfied: wcwidth in c:\users\asser\miniconda3\lib\site-packages (from prompt_toolkit) (0.2.6)
im running into the same issue :(
I have no idea what this issue is caused. I do not think we have a dependency on the package prompt_toolkit
? CC @merrymercy
Our CLI with rich style ouput used it.
how to resolve this problem?
python3 -m pip install prompt-toolkit
This worked for me
I solved this problem by
sudo pip3 install "fschat[model_worker,webui]"
or sudo pip3 install -e ".[model_worker,webui]"