2019-11-14-python-poetry使用.md
安装
安装建议
curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
如果太慢
pipx install poetry
注pipx 在隔离环境中安装和运行 Python 应用
使用
- 新建项目
poetry new project
- 安装信赖包
poetry install
- 增加包 比如
poetry add requests pendulum
- 显示依赖
poetry show