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