-
Notifications
You must be signed in to change notification settings - Fork 107
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
Editable install instructions on contributing page could be clearer #505
Comments
Thanks, @andypbarrett! I can't remember where or when I learned it (and of course am not finding it documented anywhere), but the two are equivalent. I use |
I tried to add a space in 2ec4e6f, but Jessica said the same thing in #187 (comment) and reverted it back 😆 |
Mmmm I just tried it again and I suggest closing the issue because it is a red hering. |
Alternatively add that |
probably a good idea given it seems to be a recurring theme... 😆
Curious to know if you figure it out. I think I learned it in a youtube video of a "how to make Python software" workshop that Lindsey Heagey recommended for me when we started icepyx. It was one of those narrative "you can do this without the space instead and it works" things. 🤷♀️ |
This is a confusing aspect of POSIX shortform argument behavior. Often, for example, one wants to quickly specify shortform arguments and their values: du -hd1 This passes the
Only one specific way of glomming the arguments into a single incantation gives us the 🪄 magic 🎩 🐇 we're looking for! However, IMO, for educational content, we should strictly avoid short-form arguments and go for $ pip install --editable.
Usage:
pip install [options] <requirement specifier> [package-index-options] ...
pip install [options] -r <requirements file> [package-index-options] ...
pip install [options] [-e] <vcs project url> ...
pip install [options] [-e] <local project path> ...
pip install [options] <archive url/path> ...
no such option: --editable. |
pip install -e
instructions on contributing page
https://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html
|
It looks like there is a typo on the contributing page.
I think
should be
The text was updated successfully, but these errors were encountered: