Skip to content

Installation

Requirements

  • Python 3.10 or higher

pip

pip install archtool
python -m venv .venv
source .venv/bin/activate   # Windows: .venv\Scripts\activate
pip install archtool

Verify

archtool --version

Development install

If you want to contribute or run the tests locally:

git clone https://github.com/0nliner/archtool
cd archtool
pip install -e ".[dev]"
make test