diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-05-17 12:38:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-17 12:38:03 +0100 |
commit | 7ce1f97a1353e7bd9232c22a20835e40fa5662e0 (patch) | |
tree | 6c3ac7443f3aee2b8585061dd49bd13a95375c72 /INSTALL.md | |
parent | fix some typos in the changelog (diff) | |
download | synapse-7ce1f97a1353e7bd9232c22a20835e40fa5662e0.tar.xz |
Stop telling people to install the optional dependencies. (#5197)
* Stop telling people to install the optional dependencies. They're optional. Also update the postgres docs a bit for clarity(?)
Diffstat (limited to 'INSTALL.md')
-rw-r--r-- | INSTALL.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/INSTALL.md b/INSTALL.md index b88d826f6c..1934593148 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -35,7 +35,7 @@ virtualenv -p python3 ~/synapse/env source ~/synapse/env/bin/activate pip install --upgrade pip pip install --upgrade setuptools -pip install matrix-synapse[all] +pip install matrix-synapse ``` This will download Synapse from [PyPI](https://pypi.org/project/matrix-synapse) @@ -48,7 +48,7 @@ update flag: ``` source ~/synapse/env/bin/activate -pip install -U matrix-synapse[all] +pip install -U matrix-synapse ``` Before you can start Synapse, you will need to generate a configuration |