Skip to content
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

Just fixing a small typo I noticed #1322

Merged
merged 2 commits into from
Nov 26, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Following that we'll tell you about how you can test your changes locally and th
# If you're using shells other than bash you'll need to use
pip install -e ".[test,examples,doc]"
```
* If you're only exposure to using pip is `pip install package_name` then this might be a bit confusing.
* If your only exposure to using pip is `pip install package_name` then this might be a bit confusing.
* If we type `pip install -e .` (notice the 'dot'), this tells `pip` to install a package located here, in this directory, `.`.
The `-e` flag indicates that it should be editable, meaning you will not have to run `pip install .` every time you make a change and want to try it.
* Finally the `[test,examples,doc]` tells `pip` that there's some extra optional dependencies that we want to install.
Expand Down