From 0d81386144298af42810fbf4d88668c67425d29c Mon Sep 17 00:00:00 2001 From: Markus Suonto Date: Thu, 6 Sep 2018 17:09:40 +0200 Subject: [PATCH] Add single quotes around package name (#45152) `pip install ansible[azure]` results in `zsh: no matches found: ansible[azure]` at least in my computer (zsh on Ubuntu). I don't know if it is the case with all shells, but at least for me it is. Since square brackets `[]` are special characters in bash, I propose adding single quotes to make sure that package name is always interpreted as literal. The same error is also resolvable by setting noglob. --- docs/docsite/rst/scenario_guides/guide_azure.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/scenario_guides/guide_azure.rst b/docs/docsite/rst/scenario_guides/guide_azure.rst index 7762cd0a7ee..dc16c844096 100644 --- a/docs/docsite/rst/scenario_guides/guide_azure.rst +++ b/docs/docsite/rst/scenario_guides/guide_azure.rst @@ -12,7 +12,7 @@ installed on the host running Ansible. .. code-block:: bash - $ pip install ansible[azure] + $ pip install 'ansible[azure]' If you are running Ansible from source, you can install the dependencies from the root directory of the Ansible repo.