-
Notifications
You must be signed in to change notification settings - Fork 31
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
Alternative Dask-CloudProvider Azure Installation Command #457
base: main
Are you sure you want to change the base?
Conversation
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.
Thanks for investigating this! Left some comments for your consideration.
In general, anywhere you see an installation requirement that uses shell characters, like these:
pip install dask[cloudprovider]
pip install pandas==2.*
pip install numpy>=1.23,<3.0.0a0
They should be wrapped in single quotes to prevent the shell from assigning special meaning to those characters.
If you see other cases like this in the docs, I'd support adding single quotes to them (does not need to be in this PR though).
source/cloud/azure/azure-vm-multi.md
Outdated
@@ -12,6 +12,8 @@ Dask Cloud Provider can be installed via `conda` or `pip`. The Azure-specific ca | |||
$ pip install dask-cloudprovider[azure] | |||
``` | |||
|
|||
Try running `pip install "dask-cloudprovider[azure]"` instead if you encounter a `zsh: no matches found` error. |
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.
Instead of adding another line to the docs, I think it'd be simpler to just add single quotes to the code sample above. That should always work, in any shell. Could you please do that instead?
Co-authored-by: James Lamb <jaylamb20@gmail.com>
Co-authored-by: James Lamb <jaylamb20@gmail.com>
Problem
Currently when trying to install Dask-CloudProvider Azure, I am getting a
no matches found
error:Quick Fix
After some tweaking and exploration, I tried inserting quotation marks around the package name, and that worked.
Therefore, in this PR I propose adding a sentence in the docs that refers to this potential error and suggests users to add quotation marks if they encounter it.