From 62ab2378e0bb6267a1bd0afb87a5365d72aaddba Mon Sep 17 00:00:00 2001 From: maehw Date: Sat, 23 Oct 2021 21:48:28 +0200 Subject: [PATCH] Add tiny comments to explain Python's venv module --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7bcde10..e615ab7 100644 --- a/README.md +++ b/README.md @@ -25,9 +25,9 @@ git clone --recurse-submodules https://git.wtf-eg.de/wtf-eg/handbuch-gen.git First create a Python 3 virtual environment using the venv module included with Python 3. -1. Create a virtual Python environment: ```python3 -m venv venv``` -2. Activate virtual Python environment: ```source venv/bin/activate``` -3. install needed packages from ```requirements.txt```: ```pip install -r requirements.txt``` +1. Create a virtual Python environment in the directory `venv` using the Python module `venv`: ```python3 -m venv venv``` +2. Activate the virtual Python environment: ```source venv/bin/activate``` +3. Install needed packages from ```requirements.txt```: ```pip install -r requirements.txt``` For generating the images from plantuml-sources it needs also [Plantuml](https://plantuml.com/). For pdf output the latex builder is used, so it needs also an installed latex and pdflatex.