Установка

1
pip install poetry

OR:

1
apt install python3-poetry

Init

1
poetry init

OR:

1
poetry new poetry-demo

Create venv

1
poetry env use /full/path/to/python

OR:

1
poetry env use python3.7

Activete venv

1
poetry shell

Install packages

Add package to project

1
poetry add package_name
1
poetry add package_name -G dev

Install

1
poetry install
1
2
3
poetry install --without dev
poetry install --with docs
poetry install --only test,docs

Info

1
poetry show --tree
1
poetry show --latest

Poerty - Managing environments Poerty - Commands