Browse Source

Update redis.rst to fix pip bundle issue (#3643)

Hi!

When running this example, I had an issue:

```bash
❯ pip install -U celery[redis]
zsh: no matches found: celery[redis]
```

When looking at the [Bundles](http://docs.celeryproject.org/en/latest/getting-started/introduction.html#bundles) explanation, it seems we need to use `"` around the bundle for pip to correctly process it.

I thought I should fix that in your doc then! But maybe this is only happening for me?
Rémi Marenco 8 years ago
parent
commit
65b71e467d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/getting-started/brokers/redis.rst

+ 1 - 1
docs/getting-started/brokers/redis.rst

@@ -15,7 +15,7 @@ the ``celery[redis]`` :ref:`bundle <bundles>`:
 
 .. code-block:: console
 
-    $ pip install -U celery[redis]
+    $ pip install -U "celery[redis]"
 
 .. _broker-redis-configuration: