Skip to content

Installation

Requirements

  • Python 3.9 or higher (up to 3.12)
  • Git

Installation Methods

The easiest way to install wcheck is using uv:

uv tool install wcheck

Using pip

pip install wcheck

Virtual Environment

It's recommended to use a virtual environment:

python -m venv wcheck-env
source wcheck-env/bin/activate 
pip install wcheck

From Source

git clone https://github.com/PastorD/wcheck.git
cd wcheck
uv sync  # or: pip install -e .

Optional Dependencies

GUI Support (PySide6)

For the graphical interface with branch selection dialogs:

uv tool install 'wcheck[gui]'
# or: pip install wcheck[gui]

Then use --gui flag with status or wconfig commands.

TUI Support (Textual)

For the interactive terminal interface:

uv tool install 'wcheck[tui]'
# or: pip install wcheck[tui]

Then use --tui flag with status or wconfig commands.

Both GUI and TUI

uv tool install 'wcheck[gui,tui]'
# or: pip install 'wcheck[gui,tui]'

Development Dependencies

uv sync --extra dev
# or: pip install wcheck[dev]

Verifying Installation

wcheck --version

Updating

uv tool upgrade wcheck
# or: pip install --upgrade wcheck