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

installation.md: require libpq on M1 macs #13480

Merged
merged 4 commits into from
Sep 13, 2022
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/13480.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Note that `libpq` is required on ARM-based Macs.
5 changes: 3 additions & 2 deletions docs/setup/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down