Skip to content

Commit 706d5d6

Browse files
committed
Update 'pip install -e' command in documentation to add double quotes, so it also works under zsh and on macosx, not only on bash/sh shells
1 parent cfa3bd8 commit 706d5d6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip
25-
pip install -e .[dev] # Install package in editable mode with dev dependencies
25+
pip install -e ".[dev]"" # Install package in editable mode with dev dependencies
2626
2727
- name: Run tests
2828
run: |

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Install the project dependencies in editable mode (with the '-e' argument).
4040
This allows you to make changes to your local code and see them reflected immediately without reinstalling the package.
4141

4242
```bash
43-
pip install -e .[dev]
43+
pip install -e ".[dev]"
4444
```
4545

4646
### Run tests
@@ -68,7 +68,7 @@ The tool would automatically recognize that the file is present and will try to
6868
### Running the Tool
6969

7070
To run the tool from your development environment, you can use the command-line interface set up in the project.
71-
Since the package is installed in editable mode (e.g. via `pip install -e .[dev]`), you can run the tool directly from the source code without
71+
Since the package is installed in editable mode (e.g. via `pip install -e ".[dev]"`), you can run the tool directly from the source code without
7272
needing a separate installation step for testing changes.
7373

7474
To execute the tool, use the following command:

0 commit comments

Comments
 (0)