From 81df7742125ead1fe0647eef45bd40f3101a477d Mon Sep 17 00:00:00 2001 From: Joshua Watt Date: Tue, 28 May 2024 08:39:12 -0600 Subject: [PATCH] README: Fix pip install command The pip install command accidentally had `-m` when `-e` was intended. Also quote the argument for maximum shell compatibility Signed-off-by: Joshua Watt --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8251c02..c8f23f1 100644 --- a/README.md +++ b/README.md @@ -323,7 +323,7 @@ python3 -m venv .venv Next install the project in editable mode with development dependencies: ```bash -pip install -m .[dev] +pip install -e '.[dev]' ``` Finally, to run tests use `unittest`: