diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-09-13 10:01:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-13 09:01:21 +0000 |
commit | 41df25bbbd29caeb539269a436fbe6bc57fad93c (patch) | |
tree | f723ac3fcd17ad3c439bc20f216e66c50ccb3ae4 /docs | |
parent | Add receipts event stream ordering (#13703) (diff) | |
download | synapse-41df25bbbd29caeb539269a436fbe6bc57fad93c.tar.xz |
installation.md: require libpq on M1 macs (#13480)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/setup/installation.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/setup/installation.md b/docs/setup/installation.md index 90737520ba..96833effc6 100644 --- a/docs/setup/installation.md +++ b/docs/setup/installation.md @@ -303,9 +303,10 @@ You may need to install the latest Xcode developer tools: xcode-select --install ``` -On ARM-based Macs you may need to explicitly install libjpeg which is a pillow dependency. You can use Homebrew (https://brew.sh): +On ARM-based Macs you may need to install libjpeg and libpq. +You can use Homebrew (https://brew.sh): ```sh - brew install jpeg + brew install jpeg libpq ``` On macOS Catalina (10.15) you may need to explicitly install OpenSSL |