Skip to content

Commit

Permalink
README: Fix pip install command
Browse files Browse the repository at this point in the history
The pip install command accidentally had `-m` when `-e` was intended.
Also quote the argument for maximum shell compatibility

Signed-off-by: Joshua Watt <[email protected]>
  • Loading branch information
JPEWdev committed May 28, 2024
1 parent a563f74 commit d63353d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down

0 comments on commit d63353d

Please sign in to comment.