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
This commit is contained in:
Jonas Otto 2020-06-29 14:22:03 +02:00 committed by GitHub
parent 39b6e703f8
commit 8f5e6ae091
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -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

1
tools/requirements.txt Normal file
View File

@ -0,0 +1 @@
scipy>=1.5.0