File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,19 +35,19 @@ Use the `FORCE_CMAKE=1` environment variable to force the use of `cmake` and ins
35
35
To install with OpenBLAS, set the `LLAMA_OPENBLAS=1` environment variable before installing:
36
36
37
37
```bash
38
- LLAMA_OPENBLAS=1 FORCE_CMAKE=1 pip install llama-cpp-python
38
+ CMAKE_ARGS="-DLLAMA_OPENBLAS=on" FORCE_CMAKE=1 pip install llama-cpp-python
39
39
```
40
40
41
41
To install with cuBLAS, set the `LLAMA_CUBLAS=1` environment variable before installing:
42
42
43
43
```bash
44
- LLAMA_CUBLAS=1 FORCE_CMAKE=1 pip install llama-cpp-python
44
+ CMAKE_ARGS="-DLLAMA_CUBLAS=on" FORCE_CMAKE=1 pip install llama-cpp-python
45
45
```
46
46
47
47
To install with CLBlast, set the `LLAMA_CLBLAST=1` environment variable before installing:
48
48
49
49
```bash
50
- LLAMA_CLBLAST=1 FORCE_CMAKE=1 pip install llama-cpp-python
50
+ CMAKE_ARGS="-DLLAMA_CLBLAST=on" FORCE_CMAKE=1 pip install llama-cpp-python
51
51
```
52
52
53
53
You can’t perform that action at this time.
0 commit comments