summary refs log tree commit diff
path: root/docs
diff options
context:
space:
mode:
authorLuke Walsh <luke.walsh23@gmail.com>2021-07-15 20:18:58 +0800
committerGitHub <noreply@github.com>2021-07-15 13:18:58 +0100
commit23a90a6a5c3bde22482b1910bb8b6f54c1c581cc (patch)
treedd4548e5879fca1a68a9e5bc20c312e5beaf5a84 /docs
parentDocs: Use something other than the document name to describe a page (#10399) (diff)
downloadsynapse-23a90a6a5c3bde22482b1910bb8b6f54c1c581cc.tar.xz
Updating install prerequisites for newer macOS & ARM Macs. (#9971)
Diffstat (limited to 'docs')
-rw-r--r--docs/setup/installation.md9
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/setup/installation.md b/docs/setup/installation.md
index f18f804c23..8540a7b0c1 100644
--- a/docs/setup/installation.md
+++ b/docs/setup/installation.md
@@ -166,13 +166,16 @@ sudo dnf groupinstall "Development Tools"
 
 Installing prerequisites on macOS:
 
+You may need to install the latest Xcode developer tools:
 ```sh
 xcode-select --install
-sudo easy_install pip
-sudo pip install virtualenv
-brew install pkg-config libffi
 ```
 
+On ARM-based Macs you may need to explicitly install libjpeg which is a pillow dependency. You can use Homebrew (https://brew.sh):
+```sh
+ brew install jpeg
+ ```
+
 On macOS Catalina (10.15) you may need to explicitly install OpenSSL
 via brew and inform `pip` about it so that `psycopg2` builds: