FastChat
FastChat copied to clipboard
python module not found
python3: Error while finding module specification for 'fastchat.model.apply_delta' (ModuleNotFoundError: No module named 'fastchat.model')
any idea? thanks. env :python3.9, macOS12.5.1 (21G83) M1
Did you pipe install fschat? Could you import fastchat in your python environment?
Did you pipe install
fschat? Could youimport fastchatin your python environment?
yes, here is my pip info
(py39) yangbozs-MacBook-Pro: ~/git/yangboz/FastChat % pip list |grep fschat
fschat 0.1.8
@yangboz i have meet this situcation, i just upgrade the pip3 to newest version. (pip 23.0.1) maybe you need this
pip3 install --upgrade pip
I'm running into the same situation, I installed it using method one in a venv, that's the only thing I did differently than the guide says. I've got the latest version of pip3 in the venv, all other requirements are met, but when I try and start it, it can't find the module
EDIT: Nevermind, there was a typo in the execution command
Seems the issue is fixed. Closing. Re-open if it happens again.
@yangboz i have meet this situcation, i just upgrade the pip3 to newest version. (pip 23.0.1) maybe you need this
pip3 install --upgrade pip
I have had the same problem, and upgrade my pip to 23.1.2 , But the problem is not resolved, could someone give me some advice?
@yangboz i have meet this situcation, i just upgrade the pip3 to newest version. (pip 23.0.1) maybe you need this
pip3 install --upgrade pipI have had the same problem, and upgrade my pip to 23.1.2 , But the problem is not resolved, could someone give me some advice?
i have resolved this question, The solution is : change fastchat install method don't use Method 1 "pip3 install fschat" , change Method 2 "pip3 install -e ."
I've encountered the same issue in my simulations. I'm curious why