Configuration

# Direct poetry to install virtualenv locally
poetry config virtualenvs.in-project true

# Limit maximum workers for istallation
poetry config installer.max-workers 2
# Environment infomation
poetry env info

# Activate the shell
poetry shell

# Create new poetry project
poetry new <name>

# Install the packages mentioned in pyproject.toml
poetry install 

# Update package
poetry update

# Run a command
poetry run <command></command>

# Add a package
poetry add --group dev pytest-cov