From e7aceaf02c49e5aa967d2f41e45a81fb6d6e8cd9 Mon Sep 17 00:00:00 2001 From: Pavel Valena Date: Thu, 9 Jan 2020 11:38:46 +0100 Subject: [PATCH] Put quotes in `pip install .[*]` in README as not having them results in interpretation for ZSH f.e.. --- README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 197163923e..36336596ca 100644 --- a/README.rst +++ b/README.rst @@ -218,9 +218,9 @@ Install ``python3-virtualenvwrapper`` to easily create and enable virtual environments using ``mkvirtualenv`` and ``workon``. You can also easily install optional dependencies in this way:: - pip install .[docs] - pip install .[tests] - pip install .[all] + pip install '.[docs]' + pip install '.[tests]' + pip install '.[all]' Links