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

Update Platform Prerequisites for macOS Big Sur (ARM Specific) #9971

Merged
merged 10 commits into from
Jul 15, 2021
16 changes: 12 additions & 4 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,13 +164,21 @@ sudo dnf groupinstall "Development Tools"

##### macOS

Installing prerequisites on macOS:
Installing prerequisites on macOS (Big Sur):
LukeWalsh marked this conversation as resolved.
Show resolved Hide resolved

You'll need the updated Xcode developer tools:
```sh
xcode-select --install
sudo easy_install pip
sudo pip install virtualenv
brew install pkg-config libffi
```

Install virtualenv with Pip:
```sh
sudo pip3 install virtualenv
```

Install libjpeg. You can use Homebrew (https://brew.sh):
```sh
brew install jpeg
```

On macOS Catalina (10.15) you may need to explicitly install OpenSSL
Expand Down
1 change: 1 addition & 0 deletions changelog.d/9971.doc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Updated installation dependencies for MacOS Big Sur!