Poetry 是一个用于 Python 依赖管理和打包的工具
安装Poetry的方式
1、方式一
在windows的powershell中输入
(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | py -
2、方式二
Linux, macOS, Windows (WSL)
curl -sSL https://install.python-poetry.org | python3 -
添加环境
安装完成后,它会提示你没有将poetry添加到环境变量中,手动添加到系统环境变量中
查看是否安装
poetry -V