mirror of
https://github.com/sharkdp/hyperfine.git
synced 2024-11-22 11:43:03 +03:00
Update docu
This commit is contained in:
parent
9e265bd99b
commit
5c716e48c8
@ -4,13 +4,22 @@ This folder contains scripts that can be used in combination with hyperfines `--
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
hyperfine 'sleep 0.020' 'sleep 0.021' 'sleep 0.022' --export-json sleep.json
|
hyperfine 'sleep 0.020' 'sleep 0.021' 'sleep 0.022' --export-json sleep.json
|
||||||
python plot_whisker.py sleep.json
|
./plot_whisker.py sleep.json
|
||||||
```
|
```
|
||||||
|
|
||||||
### Pre-requisites
|
### Pre-requisites
|
||||||
|
|
||||||
To make these scripts work, you will need to install `numpy`, `matplotlib` and `scipy`. Install them via
|
To make these scripts work, you will need to install `numpy`, `matplotlib` and `scipy`.
|
||||||
your package manager or `pip`:
|
|
||||||
|
If you have a Python package manager that understands [PEP-723](https://peps.python.org/pep-0723/)
|
||||||
|
inline script requirements like [`uv`](https://github.com/astral-sh/uv) or [`pipx`](https://github.com/pypa/pipx),
|
||||||
|
you can directly run the scripts using
|
||||||
|
|
||||||
|
```bash
|
||||||
|
uv run plot_whisker.py sleep.json
|
||||||
|
```
|
||||||
|
|
||||||
|
Otherwise, install the dependencies via your system package manager or using `pip`:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pip install numpy matplotlib scipy # pip3, if you are using python3
|
pip install numpy matplotlib scipy # pip3, if you are using python3
|
||||||
|
Loading…
Reference in New Issue
Block a user