-
Notifications
You must be signed in to change notification settings - Fork 892
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
Fix install command for add-ons #1279
Conversation
gsheni
commented
Dec 15, 2020
•
edited
Loading
edited
- Fixes Update Install documentation #1198
- Proof:
43416eb
to
da3e2fc
Compare
@@ -16,44 +16,44 @@ Add-ons | |||
-------- | |||
You can install add-ons individually or all at once by running:: | |||
|
|||
python -m pip install featuretools[complete] | |||
python -m pip install "featuretools[complete]" |
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.
The reason for the quotes is because some shells (like zsh) use square brackets for pattern matching while other shells (like bash) don't. Adding quotes makes it work for all shells.
Codecov Report
@@ Coverage Diff @@
## main #1279 +/- ##
=======================================
Coverage 98.36% 98.36%
=======================================
Files 134 134
Lines 14456 14456
=======================================
Hits 14220 14220
Misses 236 236 Continue to review full report at Codecov.
|
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.
Looks good!