diff options
author | Matthew Hodgson <matthew@matrix.org> | 2019-11-20 18:44:45 +0000 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2019-11-20 18:44:45 +0000 |
commit | 9cc168e42e14481387b4e6de73bfe1f8f9a2a508 (patch) | |
tree | a9533c6e41cb2363669dd159c783dde97008dfcb /INSTALL.md | |
parent | 1.6.0rc1 (diff) | |
download | synapse-9cc168e42e14481387b4e6de73bfe1f8f9a2a508.tar.xz |
update macOS installation instructions
Diffstat (limited to 'INSTALL.md')
-rw-r--r-- | INSTALL.md | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/INSTALL.md b/INSTALL.md index 29e0abafd3..9b7360f0ef 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -133,9 +133,9 @@ sudo yum install libtiff-devel libjpeg-devel libzip-devel freetype-devel \ sudo yum groupinstall "Development Tools" ``` -#### Mac OS X +#### macOS -Installing prerequisites on Mac OS X: +Installing prerequisites on macOS: ``` xcode-select --install @@ -144,6 +144,14 @@ sudo pip install virtualenv brew install pkg-config libffi ``` +On macOS Catalina (10.15) you may need to explicitly install OpenSSL +via brew and inform `pip` about it so that `psycopg2` builds: + +``` +brew install openssl@1.1 +export LDFLAGS=-L/usr/local/Cellar/openssl\@1.1/1.1.1d/lib/ +``` + #### OpenSUSE Installing prerequisites on openSUSE: |