[GH-ISSUE #106] Doc, CONTRIBUTING.md has incorrect pip install -e ... command at Step 6 in Your first code contribution section #65

Open
opened 2026-03-02 16:47:58 +03:00 by kerem · 0 comments
Owner

Originally created by @john-liu2 on GitHub (Aug 1, 2025).
Original GitHub issue: https://github.com/initialcommit-com/git-sim/issues/106

Doc, CONTRIBUTING.md has incorrect pip install -e ... command at Step 6 in Your first code contribution section

The bad one:

$ pip install -e .[dev]    
zsh: no matches found: .[dev]

$ python -m pip install -e .[dev]
zsh: no matches found: .[dev]

The good one:

$ pip install -e '.[dev]'  
Looking in indexes: https://pypi.python.org/simple
...

$ python -m pip install -e '.[dev]'
Looking in indexes: https://pypi.python.org/simple
...

Image

Originally created by @john-liu2 on GitHub (Aug 1, 2025). Original GitHub issue: https://github.com/initialcommit-com/git-sim/issues/106 Doc, [CONTRIBUTING.md](https://github.com/john-liu2/git-sim/blob/main/CONTRIBUTING.md) has incorrect `pip install -e ...` command at `Step 6` in `Your first code contribution` section The bad one: ``` $ pip install -e .[dev] zsh: no matches found: .[dev] $ python -m pip install -e .[dev] zsh: no matches found: .[dev] ``` The good one: ``` $ pip install -e '.[dev]' Looking in indexes: https://pypi.python.org/simple ... $ python -m pip install -e '.[dev]' Looking in indexes: https://pypi.python.org/simple ... ``` ![Image](https://github.com/user-attachments/assets/06110b56-41c6-4be3-82cd-918e6decbf89)
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/git-sim#65
No description provided.