系统安装poetry
curl -sSL https://install.python-poetry.org | python3 -
安装
poetry --version
验证安装是否成功
项目安装poetry
poetry install
install 命令从当前项目中读取 pyproject.toml 文件,解析依赖项并安装它们。
Vscode配置 对应虚拟环境的interpreter
terminal输入poetry shell
,得到poetry的路径
. /home/用户名/.cache/pypoetry/virtualenvs/rag-utils-re8bqiF8-py3.11/bin/activate
interpreter配置编译器位置:
. /home/用户名/.cache/pypoetry/virtualenvs/rag-utils-re8bqiF8-py3.11/bin/你的python版本
完成