chore: adjust readme

This commit is contained in:
dancingCycle 2022-11-08 15:21:09 +01:00
parent bd9efbab7e
commit 12d9434133
1 changed files with 3 additions and 3 deletions

View File

@ -22,19 +22,19 @@ In order to generate the documentation,
first create a Python virtual environment using the
`venv` module included in Python like this.
1. Create a virtual Python environment in the directory `venv` like this.
* Create a virtual Python environment in the directory `venv` like this.
```
python3 -m venv venv
```
1. Activate the virtual Python environment like this.
* Activate the virtual Python environment like this.
```
source venv/bin/activate
```
1. Install the packages listed in [requirements.txt](./requirements.txt) using `pip` like this.
* Install the packages listed in [requirements.txt](./requirements.txt) using `pip` like this.
```
pip install -r requirements.txt