From 1831de127065b7f975e68c7de1ad4d96e8847c99 Mon Sep 17 00:00:00 2001 From: Andreas <35328755+drbacke@users.noreply.github.com> Date: Wed, 11 Dec 2024 00:33:52 +0100 Subject: [PATCH] Update README.md (#232) Windows venv paths updated --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 7fe9a53..5ae5ce0 100644 --- a/README.md +++ b/README.md @@ -16,16 +16,26 @@ Following sections describe how to locally start the EOS server on `http://local Install dependencies in virtual environment: +Linux: ```bash python -m venv .venv .venv/bin/pip install -r requirements.txt ``` +Windows: +```bash +python -m venv .venv + .venv\Scripts\pip install -r requirements.txt +``` + Finally, start EOS fastapi server: +Linux: ```bash .venv/bin/fastapi run --port 8503 src/akkudoktoreos/server/fastapi_server.py ``` +Windows: + .venv\Scripts\fastapi run --port 8503 src/akkudoktoreos/server/fastapi_server.py ### Docker