Installation

Tackle-box aims to be cross-platform (linux, windows, mac) and can be installed via python’s package manager, pip.

pip install tackle-box

Tackle-box has the capability to install additional package dependencies from hooks. If you wish to keep your system python interpreter clean of packages, you should use a virtual environment.

python3 -m venv env
source env/bin/activate
pip install tackle-box

Alternatively, to build from source:

git clone https://github.com/robcxyz/tackle-box
cd tackle-box
python3 -m venv env
source env/bin/activate
python setup.py install