From bb6bc6d6c1fc4936c86550a0d8d563a8c7985420 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Zychowicz?= Date: Mon, 11 Nov 2024 23:52:02 +0100 Subject: [PATCH] Fix typo and add windows venv instructions --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 464b630..99a412f 100644 --- a/README.md +++ b/README.md @@ -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 ```