-
Notifications
You must be signed in to change notification settings - Fork 3.3k
docs: add note for zsh users to quote extras during pip install #10222
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -92,6 +92,17 @@ so make sure that is on your `PATH` variable. | |||||||
|
||||||||
### Development version (git clone) | ||||||||
|
||||||||
$ python3 -m pip install --user -e . | ||||||||
|
||||||||
> **Note for zsh users:** If your shell is `zsh`, you might see | ||||||||
> `zsh: no matches found: .[fast]` | ||||||||
> when installing. To fix this, quote the extras like so: | ||||||||
> | ||||||||
> ```bash | ||||||||
> python3 -m pip install --user '.[fast]' | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. AFAICT all mentions of "pip install ..." with extras already has it quoted. Line 26 in c1ab6cd
electrum/contrib/osx/README_macos.md Line 31 in c1ab6cd
If you find one that does not, you can add quotes at there. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I guess if you think that helps, we could quote even the lone dots. e.g. |
||||||||
> ``` | ||||||||
|
||||||||
|
||||||||
_(For OS-specific instructions, see [here for Windows](contrib/build-wine/README_windows.md), | ||||||||
and [for macOS](contrib/osx/README_macos.md))_ | ||||||||
|
||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why add this command here? In terms of ordering, this does not make sense for this section.
The command already appears on line 107:
electrum/README.md
Line 107 in c1ab6cd