You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

384 B

一、官网

https://github.com/HKUDS/LightRAG

二、环境配置

# 删除虚拟环境
conda remove -n py310 --all

# 创建虚拟环境
conda create -n py310 python=3.10

# 查看当前存在哪些虚拟环境
conda env list 

# 激活虚拟环境
conda activate py310

# 安装lightrag
pip install "lightrag-hku[api]"