From 8f5e6ae091867060a0ce82fd2675adde05557ac9 Mon Sep 17 00:00:00 2001 From: Jonas Otto Date: Mon, 29 Jun 2020 14:22:03 +0200 Subject: [PATCH] Add requirements.txt for python dependencies (#994) * add requirements.txt for python tools * adds documentation for requirements.txt Adds installation instructions for python dependencies using pip and requirements.txt --- docs/tools.md | 6 +++++- tools/requirements.txt | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 tools/requirements.txt 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