From a65d0bba77b01e019f26a80b0ddc26be38bc0610 Mon Sep 17 00:00:00 2001 From: ilyavasilev Date: Sun, 22 Oct 2023 16:08:14 +0300 Subject: [PATCH] Update installation instructions in README.md --- scada_system/README.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/scada_system/README.md b/scada_system/README.md index e587eaf..5fd788a 100644 --- a/scada_system/README.md +++ b/scada_system/README.md @@ -1,21 +1,23 @@ ## Installation -1. Install Python +1. Install `Python` -2. Create and activate your virtual environment following the [instructions](https://docs.python.org/3/tutorial/venv.html) +2. Install `python3-venv` by the following command: `apt install python3-venv` -3. Install the `requirements.txt` dependencies following the commands: +3. Create and activate your virtual environment following the [instructions](https://docs.python.org/3/tutorial/venv.html) + +4. Install the `requirements.txt` dependencies following the commands: ``` cd ./scada_system -pip install -r requirements.txt +pip3 install -r requirements.txt ``` -4. Install the package in editable mode: +5. Install the package in editable mode: ``` -pip install -e . +pip3 install -e . ``` -5. To generate documentation in HTML format, you need to run the following commands: +6. To generate documentation in HTML format, you need to run the following commands: ``` cd ./docs make html