# Installation Guide ## CLI Invoke directly with [uvx](https://docs.astral.sh/uv/#tools) ```bash uvx tagkit [command] ``` or install with uv, pipx, or pip ```bash uv tool install tagkit pipx install tagkit pip install tagkit ``` ## Python Package Install in your project with pip or the package manager of your choice. ```bash pip install tagkit ``` ## Verifying Installation To verify that tagkit is installed correctly, run: ```bash tagkit --version # or python -c "import tagkit; print(tagkit.__version__)" ```