logo Installation#

From PyPI#

To install the latest released version of Binny:

python -m pip install pybinny

Then import it in Python as:

import binny

From source#

For development or to use the latest unreleased changes:

git clone https://github.com/binny-org/binny.git
cd binny
python -m pip install -e .

Development install#

To install Binny together with development tools for testing, linting, and CI:

python -m pip install -e ".[dev]"