Skip to content
Snippets Groups Projects
Unverified Commit de45bf5b authored by Patrick Cloke's avatar Patrick Cloke Committed by GitHub
Browse files

Quote pip install with brackets to avoid shell interpretation. (#9151)

parent 6633a401
No related branches found
No related tags found
No related merge requests found
Quote `pip install` packages when extras are used to avoid shells interpreting bracket characters.
...@@ -18,7 +18,7 @@ connect to a postgres database. ...@@ -18,7 +18,7 @@ connect to a postgres database.
virtualenv](../INSTALL.md#installing-from-source), you can install virtualenv](../INSTALL.md#installing-from-source), you can install
the library with: the library with:
~/synapse/env/bin/pip install matrix-synapse[postgres] ~/synapse/env/bin/pip install "matrix-synapse[postgres]"
(substituting the path to your virtualenv for `~/synapse/env`, if (substituting the path to your virtualenv for `~/synapse/env`, if
you used a different path). You will require the postgres you used a different path). You will require the postgres
......
...@@ -59,7 +59,7 @@ The appropriate dependencies must also be installed for Synapse. If using a ...@@ -59,7 +59,7 @@ The appropriate dependencies must also be installed for Synapse. If using a
virtualenv, these can be installed with: virtualenv, these can be installed with:
```sh ```sh
pip install matrix-synapse[redis] pip install "matrix-synapse[redis]"
``` ```
Note that these dependencies are included when synapse is installed with `pip Note that these dependencies are included when synapse is installed with `pip
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment