diff options
author | Erik Johnston <erik@matrix.org> | 2021-01-19 10:19:25 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2021-01-19 10:19:25 +0000 |
commit | bed4fa29fd03696acbfee8c6952ca8692ff6d722 (patch) | |
tree | 1448960716d841caeb779e720d81b5db0dd8986c /docs/workers.md | |
parent | Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixes (diff) | |
parent | Quote pip install with brackets to avoid shell interpretation. (#9151) (diff) | |
download | synapse-bed4fa29fd03696acbfee8c6952ca8692ff6d722.tar.xz |
Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixes
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 |