You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/installation.md
+36-3
Original file line number
Diff line number
Diff line change
@@ -112,12 +112,20 @@ Now it's time to start setting up the venv. First check to see what is there
112
112
(3.8.16) $ pip list
113
113
```
114
114
115
-
You will probably be prompted to update pip at this time. Do whatever command it suggests
115
+
You will probably be prompted to update pip at this time. Do whatever command it suggests.
116
116
117
-
Also install *wheel* and *cython*.
117
+
Now install *wheel*
118
118
119
119
```
120
-
(3.8.16) $ pip install wheel cython
120
+
(3.8.16) $ pip install wheel
121
+
```
122
+
123
+
### Linux, Windows, MacOS (Intel)
124
+
125
+
Install *cython*
126
+
127
+
```
128
+
(3.8.16) $ pip install cython
121
129
```
122
130
123
131
And now install the dependencies
@@ -126,6 +134,31 @@ And now install the dependencies
126
134
(3.8.16) $ pip install -r requirements.txt
127
135
```
128
136
137
+
### MacOS (ARM)
138
+
139
+
If you're running MacOS on one of the new ARM chips, the process is more complex. You'll need Homebrew and the Apple XCode Commandline Development Tools, configured for ARM. Doing that is beyond the scope of this document, type `homebrew apple xcode command line tools` into your favourite search engine. Once installed and configured, install *cython*:
0 commit comments