docs(develop): use double quotes for pip

Some shells, notably Zsh, try parsing the brackets.

Fixes: #910
This commit is contained in:
Xarvex
2025-04-05 19:11:40 -05:00
parent 29d3d64a32
commit a72c2c4ba8
3 changed files with 5 additions and 5 deletions

View File

@@ -43,13 +43,13 @@ If you know what you're doing and have developed for Python projects in the past
4. If using a virtual environment instead of a dependency manager, install an editable version of the program and development dependencies with the following PIP command:
```
pip install -e .[dev]
pip install -e ".[dev]"
```
Otherwise, modify the command above for use with your dependency manager of choice. For example if using uv, you may use this:
```
uv pip install -e .[dev]
uv pip install -e ".[dev]"
```
## Workflow Checks