Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,15 +236,22 @@ All of those scripts present an appropriate graph and saves it to a PDF file to
In order to use graph-generating scripts you need to create a *Python 3.12* virtual environment.

```bash
python3 -m vevnv .venv
python3 -m venv .venv
```

Then you need to activate this environment and install all required dependencies from the `requirements.txt`.

On Linux:
```bash
source .venv/bin/acivate
```

On Windows:
```bash
.\.venv\Scripts\activate
```

Then:
```bash
pip install -r requirements.txt
```
Expand Down