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
* CMAKE 3.16 or higher: `apt install cmake` (Linux/Unix) or `brew install cmake` (MacOS) or https://cmake.org/download/ (Windows)
11
+
* conda:
12
+
* MacOS:
13
+
```
14
+
brew install anaconda
15
+
/opt/homebrew/anaconda3/bin/conda init zsh # Please use your shell name and the directory you installed Anaconda
16
+
```
17
+
* Other OS: Follow the instructions on https://docs.conda.io/projects/conda/en/latest/user-guide/install/index.html
12
18
* Cython 3.0 or higher (We will install it with Python later by `conda`)
19
+
* OpenMP (We will install it later by `conda` or Homebrew)
13
20
14
21
#### Additional Prerequisites for Windows:
15
22
@@ -28,6 +35,7 @@ cd quartz
28
35
```shell
29
36
conda env create --name quartz --file env.yml
30
37
conda activate quartz
38
+
conda install openmp # on MacOS, please run "brew install libomp" instead
31
39
```
32
40
33
41
3. Build the Quartz runtime library (optional with CLion, see [below](INSTALL.md#clion-integration-optional)). This step differs a little bit between Windows and other OS.
0 commit comments