Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Quote pip install with brackets. #9151

Merged
merged 2 commits into from
Jan 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/9151.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Quote `pip install` packages when extras are used to avoid shells interpreting bracket characters.
2 changes: 1 addition & 1 deletion docs/postgres.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ connect to a postgres database.
virtualenv](../INSTALL.md#installing-from-source), you can install
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
you used a different path). You will require the postgres
Expand Down
2 changes: 1 addition & 1 deletion docs/workers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down