### Setup tidalapi for development with Poetry Source: https://github.com/ebblabs/python-tidal/blob/main/README.rst Install dependencies and set up the project for development using pipx and poetry. This includes installing pipx, installing poetry, and then installing the project's dependencies without the root package. ```bash $ pip install pipx $ pipx install poetry $ poetry install --no-root ``` -------------------------------- ### Install development dependencies with Poetry Source: https://github.com/ebblabs/python-tidal/blob/main/docs/index.md Install project dependencies and set up the project for development using pipx and poetry. This command installs dependencies without installing the root package. ```bash pip install pipx pipx install poetry poetry install --no-root ``` -------------------------------- ### Install tidalapi using pip Source: https://github.com/ebblabs/python-tidal/blob/main/README.rst Install the tidalapi package from PyPI using pip. Requires Python 3.9 or higher. ```bash $ pip install tidalapi ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.