File tree 1 file changed +15
-2
lines changed
1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ that generates inputs to [ninja](https://ninja-build.org/).
8
8
9
9
The build system has been tested on the following Operating Systems:
10
10
11
- - macOS 10.15
11
+ - macOS 13
12
12
- Debian 11 (64 bit required)
13
13
- Ubuntu 22.04 LTS
14
14
@@ -107,7 +107,20 @@ sudo apt-get install libsdl2-dev
107
107
108
108
### Installing prerequisites on macOS
109
109
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
+ ```
111
124
112
125
#### UI builds
113
126
You can’t perform that action at this time.
0 commit comments