diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-01-18 11:12:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-18 11:12:20 -0500 |
commit | de45bf5b5b72ea4cc6d16f2c41d7f2a6e1c350bf (patch) | |
tree | 794ef3b27de6f9ce576f077aaa2d77af4b1ecbe9 /docs/workers.md | |
parent | Allow moving account data and receipts streams off master (#9104) (diff) | |
download | synapse-de45bf5b5b72ea4cc6d16f2c41d7f2a6e1c350bf.tar.xz |
Quote pip install with brackets to avoid shell interpretation. (#9151)
Diffstat (limited to 'docs/workers.md')
-rw-r--r-- | docs/workers.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/workers.md b/docs/workers.md index cc5090f224..d01683681f 100644 --- a/docs/workers.md +++ b/docs/workers.md @@ -59,7 +59,7 @@ The appropriate dependencies must also be installed for Synapse. If using a virtualenv, these can be installed with: ```sh -pip install matrix-synapse[redis] +pip install "matrix-synapse[redis]" ``` Note that these dependencies are included when synapse is installed with `pip |