Installation¶
Using pip¶
Install from PyPI using:
pip install pyTGA
Using uv¶
uv is a fast Python package manager. Install pyTGA using:
uv add pyTGA
Or in a virtual environment:
uv venv
uv pip install pyTGA
Development Installation¶
If you want to install the development version:
Clone the repository:
git clone https://github.com/MyonicS/pyTGA
Install in development mode with dev dependencies:
cd pyTGA
pip install -e .[dev]
Or using uv:
cd pyTGA
uv pip install -e .[dev]