python自动管理包工具 poetry

安装

brew install poetry

设置源 pyproject.toml

[[tool.poetry.source]]
name = "ali"
url = "https://mirrors.aliyun.com/pypi/simple/"
priority = "primary"


[[tool.poetry.source]]
name = "tencent"
url = "https://mirrors.cloud.tencent.com/pypi/simple/"
priority = "primary"


[[tool.poetry.source]]
name = "tsinghua"
url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/"
priority = "default"

安装卸载包

poetry  add/remove
```

### 自动安装

poetry install


### 隔离环境

poetry shell

posted @ 2024-07-15 20:57  vx_guanchaoguo0  阅读(1)  评论(0编辑  收藏  举报