diff --git a/docs/README.md b/docs/README.md index 469528e..edcdf75 100644 --- a/docs/README.md +++ b/docs/README.md @@ -14,11 +14,15 @@ Before you can build the docs, you have to do the _Prerequisites_ below. I recommend building a Python [**venv**](https://docs.python.org/3/library/venv.html). -1. Make the virtual environment `python -m venv ~/.python` -2. Activate it: `source ~/.python/bin/activate` -3. Install all the requirements into it. - 1. `pip3 install -r ../requirements.txt` - 2. `pip3 install -r requirements.txt` +### Windows + +1. Make the virtual environment `python3 -m venv .venv` +2. Activate it: +- Windows: `.venv\Scripts\activate` +- Other: `.venv/bin/activate` +3. Install all the requirements into it: + 1. `pip install -r requirements.txt` + 2. `pip3 install -e .` Now you can run the steps above in the **Building** section.