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
21 changes: 17 additions & 4 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,13 +164,26 @@ 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 Homebrew:
```sh
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should probably link to Homebrew's install documentation instead of putting it inline. Putting a curl + sh execute is a bit meh.


Install libjpeg:
```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!