没有名为“llama_index.vector_stores”的模块-在 WSL Ubuntu 上安装 OpenDevin

没有名为“llama_index.vector_stores”的模块-在 WSL Ubuntu 上安装 OpenDevin

我尝试安装并启动开放的Devin在 WSL Ubuntu (WSL 2) 上。好的,我明白了指南,但我无法修复此错误,因此后端无法启动

ModuleNotFoundError:没有名为“llama_index.vector_stores”的模块

我使用这些命令

wget https://repo.anaconda.com/archive/Anaconda3-2022.05-Linux-x86_64.sh
bash Anaconda3-2022.05-Linux-x86_64.sh

sudo apt install uvicorn

git clone https://github.com/OpenDevin/OpenDevin.git
cd OpenDevin
conda create -n opendevin python=3.11
conda activate opendevin 
docker ps
docker pull ghcr.io/opendevin/sandbox
which python
python --version
/home/ubuntu/anaconda3/envs/opendevin/bin/python -m pip install pipenv
/home/ubuntu/anaconda3/envs/opendevin/bin/python -m pipenv install -v
/home/ubuntu/anaconda3/envs/opendevin/bin/python -m pipenv shell
uvicorn opendevin.server.listen:app --port 3000

uvicorn opendevin.server.listen:app --port 3000命令执行 后我收到此错误,
有什么解决办法吗?

相关内容