git-sim icon indicating copy to clipboard operation
git-sim copied to clipboard

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

Open john-liu2 opened this issue 3 months ago • 0 comments

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

john-liu2 avatar Aug 01 '25 03:08 john-liu2