Skip to content

Latest commit

 

History

History
37 lines (19 loc) · 704 Bytes

installation.rst

File metadata and controls

37 lines (19 loc) · 704 Bytes

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]