Skip to content

Installation

Using uv

uv is an extremely fast Python package installer. You can use it to install pygatherer and try it out:

$ uv pip install pygatherer

Using a PEP 621 compliant build backend

PEP 621 is the standard way to store your dependencies in a pyproject.toml file. You can add pygatherer to your pyproject.toml file:

[project]
dependencies = [
    "pygatherer",
    ....
]

Python Version Requirement

Please note that pygatherer requires Python 3.9 or higher. Please ensure that you have such a version installed in your system. If not, consider using a tool like pyenv to create a shell with the required Python version.