mirror of https://github.com/google/benchmark.git
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:
parent
39b6e703f8
commit
8f5e6ae091
|
@ -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
|
||||
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
scipy>=1.5.0
|
Loading…
Reference in New Issue