Installation

The easiest way to install Summit is using pip or a depedency manager that supports pip:

pip install summit

You could also use poetry or pipenv:

poetry add summit
pipenv install summit

Summit has a set of extra dependencies for running the code in the experiments folder on Github. You can install them as follows:

# with pip:
pip install summit[experiments]

# with poetry
poetry add summit -E experiments

# with pipenv
pipenv install summit[experiments]