black, isort and mypy(strict) environments.
If you already have Poetry installed locally, you can install the dependencies using the following command:
poetry installFirst, create a virtual environment using the following command.
python -m venv .venvActivate the virtual environment.
# Windows
.venv/Scripts/Activate.ps1
# Linux/macOS
.venv/bin/Activate.ps1 After activation is complete, install Poetry in the virtual environment using the following command.
# Windows
.venv/Scripts/pip install -U pip setuptools
.venv/Scripts/pip install poetry
# Linux/macOS
.venv/bin/pip install -U pip setuptools
.venv/bin/pip install poetryInstall dependencies.
poetry install