diff --git a/docs/tools.md b/docs/tools.md index 4a3b2e9b..f2d0c497 100644 --- a/docs/tools.md +++ b/docs/tools.md @@ -4,7 +4,11 @@ The `compare.py` can be used to compare the result of benchmarks. -**NOTE**: the utility relies on the scipy package which can be installed using [these instructions](https://www.scipy.org/install.html). +### Dependencies +The utility relies on the [scipy](https://www.scipy.org) package which can be installed using pip: +```bash +pip3 install -r requirements.txt +``` ### Displaying aggregates only diff --git a/tools/requirements.txt b/tools/requirements.txt new file mode 100644 index 00000000..3b3331b5 --- /dev/null +++ b/tools/requirements.txt @@ -0,0 +1 @@ +scipy>=1.5.0 \ No newline at end of file