Poetry 是当下热门的 Python 包管理器。Poetry 注重为项目提供完整的生命周期管理,包括构建、打包、发布和依赖管理。它的目标是成为 Python 项目的唯一工具。其使用 pyproject.toml
文件来管理项目的依赖和构建配置。
安装
pipx install poetry
命令补全
mkdir $ZSH_CUSTOM/plugins/poetry
poetry completions zsh > $ZSH_CUSTOM/plugins/poetry/_poetry
然后,你必须将 poetry
添加到你的 ~/.zshrc
中的 plugins 数组:
plugins(
poetry
...
)
创建新项目
poetry new poetry-demo
cd poetry-demo
poetry shell
exit
初始化已经存在的项目
cd pre-existing-project
poetry init
安装依赖
poetry install
激活虚拟环境
poetry shell
$ exit # 退出虚拟环境
移除虚拟环境
poetry env remove
参考:
See also:
标签:项目,demo,使用,poetry,Poetry,虚拟环境,plugins From: https://www.cnblogs.com/Undefined443/p/18252795