Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4da2a3d

Browse files
committedJun 25, 2024·
Update docs
1 parent 0eacd5b commit 4da2a3d

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed
 

‎docs/guides/BUILDING.md

+15-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ that generates inputs to [ninja](https://ninja-build.org/).
88

99
The build system has been tested on the following Operating Systems:
1010

11-
- macOS 10.15
11+
- macOS 13
1212
- Debian 11 (64 bit required)
1313
- Ubuntu 22.04 LTS
1414

@@ -107,7 +107,20 @@ sudo apt-get install libsdl2-dev
107107

108108
### Installing prerequisites on macOS
109109

110-
On macOS, install Xcode from the Mac App Store.
110+
On macOS, install Xcode from the Mac App Store. After installing Xcode, install python3.11 using brew:
111+
112+
``` sh
113+
brew install python@3.11
114+
python3 -m pip install --upgrade setuptools
115+
python3 -m pip install --upgrade pip
116+
cd /usr/local/bin
117+
ln -sf python3.11 python3
118+
ln -sf python3 python
119+
ln -sf pip3.11 pip3
120+
ln -sf pip3 pip
121+
122+
123+
```
111124

112125
#### UI builds
113126

0 commit comments

Comments
 (0)
Please sign in to comment.